hexapdf 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CONTRIBUTERS +3 -0
- data/LICENSE +26 -0
- data/README.md +88 -0
- data/Rakefile +121 -0
- data/VERSION +1 -0
- data/agpl-3.0.txt +661 -0
- data/bin/hexapdf +6 -0
- data/data/hexapdf/afm/Courier-Bold.afm +342 -0
- data/data/hexapdf/afm/Courier-BoldOblique.afm +342 -0
- data/data/hexapdf/afm/Courier-Oblique.afm +342 -0
- data/data/hexapdf/afm/Courier.afm +342 -0
- data/data/hexapdf/afm/Helvetica-Bold.afm +2827 -0
- data/data/hexapdf/afm/Helvetica-BoldOblique.afm +2827 -0
- data/data/hexapdf/afm/Helvetica-Oblique.afm +3051 -0
- data/data/hexapdf/afm/Helvetica.afm +3051 -0
- data/data/hexapdf/afm/MustRead.html +1 -0
- data/data/hexapdf/afm/Symbol.afm +213 -0
- data/data/hexapdf/afm/Times-Bold.afm +2588 -0
- data/data/hexapdf/afm/Times-BoldItalic.afm +2384 -0
- data/data/hexapdf/afm/Times-Italic.afm +2667 -0
- data/data/hexapdf/afm/Times-Roman.afm +2419 -0
- data/data/hexapdf/afm/ZapfDingbats.afm +225 -0
- data/data/hexapdf/encoding/glyphlist.txt +4305 -0
- data/data/hexapdf/encoding/zapfdingbats.txt +225 -0
- data/examples/arc.rb +50 -0
- data/examples/graphics.rb +274 -0
- data/examples/hello_world.rb +16 -0
- data/examples/machupicchu.jpg +0 -0
- data/examples/merging.rb +24 -0
- data/examples/optimizing.rb +20 -0
- data/examples/show_char_bboxes.rb +55 -0
- data/examples/standard_pdf_fonts.rb +72 -0
- data/examples/truetype.rb +45 -0
- data/lib/hexapdf/cli/extract.rb +128 -0
- data/lib/hexapdf/cli/info.rb +121 -0
- data/lib/hexapdf/cli/inspect.rb +157 -0
- data/lib/hexapdf/cli/modify.rb +218 -0
- data/lib/hexapdf/cli.rb +121 -0
- data/lib/hexapdf/configuration.rb +392 -0
- data/lib/hexapdf/content/canvas.rb +1974 -0
- data/lib/hexapdf/content/color_space.rb +364 -0
- data/lib/hexapdf/content/graphic_object/arc.rb +267 -0
- data/lib/hexapdf/content/graphic_object/endpoint_arc.rb +208 -0
- data/lib/hexapdf/content/graphic_object/solid_arc.rb +173 -0
- data/lib/hexapdf/content/graphic_object.rb +81 -0
- data/lib/hexapdf/content/graphics_state.rb +579 -0
- data/lib/hexapdf/content/operator.rb +1072 -0
- data/lib/hexapdf/content/parser.rb +204 -0
- data/lib/hexapdf/content/processor.rb +451 -0
- data/lib/hexapdf/content/transformation_matrix.rb +172 -0
- data/lib/hexapdf/content.rb +47 -0
- data/lib/hexapdf/data_dir.rb +51 -0
- data/lib/hexapdf/dictionary.rb +303 -0
- data/lib/hexapdf/dictionary_fields.rb +382 -0
- data/lib/hexapdf/document.rb +589 -0
- data/lib/hexapdf/document_utils.rb +209 -0
- data/lib/hexapdf/encryption/aes.rb +206 -0
- data/lib/hexapdf/encryption/arc4.rb +93 -0
- data/lib/hexapdf/encryption/fast_aes.rb +79 -0
- data/lib/hexapdf/encryption/fast_arc4.rb +67 -0
- data/lib/hexapdf/encryption/identity.rb +63 -0
- data/lib/hexapdf/encryption/ruby_aes.rb +447 -0
- data/lib/hexapdf/encryption/ruby_arc4.rb +96 -0
- data/lib/hexapdf/encryption/security_handler.rb +494 -0
- data/lib/hexapdf/encryption/standard_security_handler.rb +616 -0
- data/lib/hexapdf/encryption.rb +94 -0
- data/lib/hexapdf/error.rb +73 -0
- data/lib/hexapdf/filter/ascii85_decode.rb +160 -0
- data/lib/hexapdf/filter/ascii_hex_decode.rb +87 -0
- data/lib/hexapdf/filter/dct_decode.rb +57 -0
- data/lib/hexapdf/filter/encryption.rb +59 -0
- data/lib/hexapdf/filter/flate_decode.rb +93 -0
- data/lib/hexapdf/filter/jpx_decode.rb +56 -0
- data/lib/hexapdf/filter/lzw_decode.rb +191 -0
- data/lib/hexapdf/filter/predictor.rb +266 -0
- data/lib/hexapdf/filter/run_length_decode.rb +108 -0
- data/lib/hexapdf/filter.rb +176 -0
- data/lib/hexapdf/font/cmap/parser.rb +146 -0
- data/lib/hexapdf/font/cmap/writer.rb +176 -0
- data/lib/hexapdf/font/cmap.rb +90 -0
- data/lib/hexapdf/font/encoding/base.rb +77 -0
- data/lib/hexapdf/font/encoding/difference_encoding.rb +64 -0
- data/lib/hexapdf/font/encoding/glyph_list.rb +150 -0
- data/lib/hexapdf/font/encoding/mac_expert_encoding.rb +221 -0
- data/lib/hexapdf/font/encoding/mac_roman_encoding.rb +265 -0
- data/lib/hexapdf/font/encoding/standard_encoding.rb +205 -0
- data/lib/hexapdf/font/encoding/symbol_encoding.rb +244 -0
- data/lib/hexapdf/font/encoding/win_ansi_encoding.rb +280 -0
- data/lib/hexapdf/font/encoding/zapf_dingbats_encoding.rb +250 -0
- data/lib/hexapdf/font/encoding.rb +68 -0
- data/lib/hexapdf/font/true_type/font.rb +179 -0
- data/lib/hexapdf/font/true_type/table/cmap.rb +103 -0
- data/lib/hexapdf/font/true_type/table/cmap_subtable.rb +384 -0
- data/lib/hexapdf/font/true_type/table/directory.rb +92 -0
- data/lib/hexapdf/font/true_type/table/glyf.rb +166 -0
- data/lib/hexapdf/font/true_type/table/head.rb +143 -0
- data/lib/hexapdf/font/true_type/table/hhea.rb +109 -0
- data/lib/hexapdf/font/true_type/table/hmtx.rb +79 -0
- data/lib/hexapdf/font/true_type/table/loca.rb +79 -0
- data/lib/hexapdf/font/true_type/table/maxp.rb +112 -0
- data/lib/hexapdf/font/true_type/table/name.rb +218 -0
- data/lib/hexapdf/font/true_type/table/os2.rb +200 -0
- data/lib/hexapdf/font/true_type/table/post.rb +230 -0
- data/lib/hexapdf/font/true_type/table.rb +155 -0
- data/lib/hexapdf/font/true_type.rb +48 -0
- data/lib/hexapdf/font/true_type_wrapper.rb +240 -0
- data/lib/hexapdf/font/type1/afm_parser.rb +230 -0
- data/lib/hexapdf/font/type1/character_metrics.rb +67 -0
- data/lib/hexapdf/font/type1/font.rb +123 -0
- data/lib/hexapdf/font/type1/font_metrics.rb +117 -0
- data/lib/hexapdf/font/type1/pfb_parser.rb +71 -0
- data/lib/hexapdf/font/type1.rb +52 -0
- data/lib/hexapdf/font/type1_wrapper.rb +193 -0
- data/lib/hexapdf/font_loader/from_configuration.rb +70 -0
- data/lib/hexapdf/font_loader/standard14.rb +98 -0
- data/lib/hexapdf/font_loader.rb +85 -0
- data/lib/hexapdf/font_utils.rb +89 -0
- data/lib/hexapdf/image_loader/jpeg.rb +166 -0
- data/lib/hexapdf/image_loader/pdf.rb +89 -0
- data/lib/hexapdf/image_loader/png.rb +410 -0
- data/lib/hexapdf/image_loader.rb +68 -0
- data/lib/hexapdf/importer.rb +139 -0
- data/lib/hexapdf/name_tree_node.rb +78 -0
- data/lib/hexapdf/number_tree_node.rb +67 -0
- data/lib/hexapdf/object.rb +363 -0
- data/lib/hexapdf/parser.rb +349 -0
- data/lib/hexapdf/rectangle.rb +99 -0
- data/lib/hexapdf/reference.rb +98 -0
- data/lib/hexapdf/revision.rb +206 -0
- data/lib/hexapdf/revisions.rb +194 -0
- data/lib/hexapdf/serializer.rb +326 -0
- data/lib/hexapdf/stream.rb +279 -0
- data/lib/hexapdf/task/dereference.rb +109 -0
- data/lib/hexapdf/task/optimize.rb +230 -0
- data/lib/hexapdf/task.rb +68 -0
- data/lib/hexapdf/tokenizer.rb +406 -0
- data/lib/hexapdf/type/catalog.rb +107 -0
- data/lib/hexapdf/type/embedded_file.rb +87 -0
- data/lib/hexapdf/type/file_specification.rb +232 -0
- data/lib/hexapdf/type/font.rb +81 -0
- data/lib/hexapdf/type/font_descriptor.rb +109 -0
- data/lib/hexapdf/type/font_simple.rb +190 -0
- data/lib/hexapdf/type/font_true_type.rb +47 -0
- data/lib/hexapdf/type/font_type1.rb +162 -0
- data/lib/hexapdf/type/form.rb +103 -0
- data/lib/hexapdf/type/graphics_state_parameter.rb +79 -0
- data/lib/hexapdf/type/image.rb +73 -0
- data/lib/hexapdf/type/info.rb +70 -0
- data/lib/hexapdf/type/names.rb +69 -0
- data/lib/hexapdf/type/object_stream.rb +224 -0
- data/lib/hexapdf/type/page.rb +355 -0
- data/lib/hexapdf/type/page_tree_node.rb +269 -0
- data/lib/hexapdf/type/resources.rb +212 -0
- data/lib/hexapdf/type/trailer.rb +128 -0
- data/lib/hexapdf/type/viewer_preferences.rb +73 -0
- data/lib/hexapdf/type/xref_stream.rb +204 -0
- data/lib/hexapdf/type.rb +67 -0
- data/lib/hexapdf/utils/bit_field.rb +87 -0
- data/lib/hexapdf/utils/bit_stream.rb +148 -0
- data/lib/hexapdf/utils/lru_cache.rb +65 -0
- data/lib/hexapdf/utils/math_helpers.rb +55 -0
- data/lib/hexapdf/utils/object_hash.rb +130 -0
- data/lib/hexapdf/utils/pdf_doc_encoding.rb +93 -0
- data/lib/hexapdf/utils/sorted_tree_node.rb +339 -0
- data/lib/hexapdf/version.rb +39 -0
- data/lib/hexapdf/writer.rb +199 -0
- data/lib/hexapdf/xref_section.rb +152 -0
- data/lib/hexapdf.rb +34 -0
- data/man/man1/hexapdf.1 +249 -0
- data/test/data/aes-test-vectors/CBCGFSbox-128-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-128-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-192-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-192-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-256-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCGFSbox-256-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-128-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-128-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-192-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-192-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-256-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCKeySbox-256-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-128-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-128-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-192-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-192-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-256-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarKey-256-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-128-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-128-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-192-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-192-encrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-256-decrypt.data.gz +0 -0
- data/test/data/aes-test-vectors/CBCVarTxt-256-encrypt.data.gz +0 -0
- data/test/data/fonts/Ubuntu-Title.ttf +0 -0
- data/test/data/images/cmyk.jpg +0 -0
- data/test/data/images/fillbytes.jpg +0 -0
- data/test/data/images/gray.jpg +0 -0
- data/test/data/images/greyscale-1bit.png +0 -0
- data/test/data/images/greyscale-2bit.png +0 -0
- data/test/data/images/greyscale-4bit.png +0 -0
- data/test/data/images/greyscale-8bit.png +0 -0
- data/test/data/images/greyscale-alpha-8bit.png +0 -0
- data/test/data/images/greyscale-trns-8bit.png +0 -0
- data/test/data/images/greyscale-with-gamma1.0.png +0 -0
- data/test/data/images/greyscale-with-gamma1.5.png +0 -0
- data/test/data/images/indexed-1bit.png +0 -0
- data/test/data/images/indexed-2bit.png +0 -0
- data/test/data/images/indexed-4bit.png +0 -0
- data/test/data/images/indexed-8bit.png +0 -0
- data/test/data/images/indexed-alpha-4bit.png +0 -0
- data/test/data/images/indexed-alpha-8bit.png +0 -0
- data/test/data/images/rgb.jpg +0 -0
- data/test/data/images/truecolour-8bit.png +0 -0
- data/test/data/images/truecolour-alpha-8bit.png +0 -0
- data/test/data/images/truecolour-gama-chrm-8bit.png +0 -0
- data/test/data/images/truecolour-srgb-8bit.png +0 -0
- data/test/data/minimal.pdf +44 -0
- data/test/data/standard-security-handler/README +9 -0
- data/test/data/standard-security-handler/bothpwd-aes-128bit-V4.pdf +44 -0
- data/test/data/standard-security-handler/bothpwd-aes-256bit-V5.pdf +0 -0
- data/test/data/standard-security-handler/bothpwd-arc4-128bit-V2.pdf +43 -0
- data/test/data/standard-security-handler/bothpwd-arc4-128bit-V4.pdf +43 -0
- data/test/data/standard-security-handler/bothpwd-arc4-40bit-V1.pdf +0 -0
- data/test/data/standard-security-handler/nopwd-aes-128bit-V4.pdf +43 -0
- data/test/data/standard-security-handler/nopwd-aes-256bit-V5.pdf +0 -0
- data/test/data/standard-security-handler/nopwd-arc4-128bit-V2.pdf +43 -0
- data/test/data/standard-security-handler/nopwd-arc4-128bit-V4.pdf +43 -0
- data/test/data/standard-security-handler/nopwd-arc4-40bit-V1.pdf +43 -0
- data/test/data/standard-security-handler/ownerpwd-aes-128bit-V4.pdf +0 -0
- data/test/data/standard-security-handler/ownerpwd-aes-256bit-V5.pdf +43 -0
- data/test/data/standard-security-handler/ownerpwd-arc4-128bit-V2.pdf +43 -0
- data/test/data/standard-security-handler/ownerpwd-arc4-128bit-V4.pdf +43 -0
- data/test/data/standard-security-handler/ownerpwd-arc4-40bit-V1.pdf +43 -0
- data/test/data/standard-security-handler/userpwd-aes-128bit-V4.pdf +43 -0
- data/test/data/standard-security-handler/userpwd-aes-256bit-V5.pdf +43 -0
- data/test/data/standard-security-handler/userpwd-arc4-128bit-V2.pdf +0 -0
- data/test/data/standard-security-handler/userpwd-arc4-128bit-V4.pdf +0 -0
- data/test/data/standard-security-handler/userpwd-arc4-40bit-V1.pdf +43 -0
- data/test/hexapdf/common_tokenizer_tests.rb +204 -0
- data/test/hexapdf/content/common.rb +31 -0
- data/test/hexapdf/content/graphic_object/test_arc.rb +93 -0
- data/test/hexapdf/content/graphic_object/test_endpoint_arc.rb +91 -0
- data/test/hexapdf/content/graphic_object/test_solid_arc.rb +86 -0
- data/test/hexapdf/content/test_canvas.rb +1113 -0
- data/test/hexapdf/content/test_color_space.rb +97 -0
- data/test/hexapdf/content/test_graphics_state.rb +138 -0
- data/test/hexapdf/content/test_operator.rb +619 -0
- data/test/hexapdf/content/test_parser.rb +66 -0
- data/test/hexapdf/content/test_processor.rb +156 -0
- data/test/hexapdf/content/test_transformation_matrix.rb +64 -0
- data/test/hexapdf/encryption/common.rb +87 -0
- data/test/hexapdf/encryption/test_aes.rb +121 -0
- data/test/hexapdf/encryption/test_arc4.rb +39 -0
- data/test/hexapdf/encryption/test_fast_aes.rb +17 -0
- data/test/hexapdf/encryption/test_fast_arc4.rb +12 -0
- data/test/hexapdf/encryption/test_identity.rb +21 -0
- data/test/hexapdf/encryption/test_ruby_aes.rb +23 -0
- data/test/hexapdf/encryption/test_ruby_arc4.rb +20 -0
- data/test/hexapdf/encryption/test_security_handler.rb +356 -0
- data/test/hexapdf/encryption/test_standard_security_handler.rb +274 -0
- data/test/hexapdf/filter/common.rb +53 -0
- data/test/hexapdf/filter/test_ascii85_decode.rb +60 -0
- data/test/hexapdf/filter/test_ascii_hex_decode.rb +33 -0
- data/test/hexapdf/filter/test_encryption.rb +24 -0
- data/test/hexapdf/filter/test_flate_decode.rb +35 -0
- data/test/hexapdf/filter/test_lzw_decode.rb +52 -0
- data/test/hexapdf/filter/test_predictor.rb +183 -0
- data/test/hexapdf/filter/test_run_length_decode.rb +32 -0
- data/test/hexapdf/font/cmap/test_parser.rb +67 -0
- data/test/hexapdf/font/cmap/test_writer.rb +58 -0
- data/test/hexapdf/font/encoding/test_base.rb +35 -0
- data/test/hexapdf/font/encoding/test_difference_encoding.rb +21 -0
- data/test/hexapdf/font/encoding/test_glyph_list.rb +59 -0
- data/test/hexapdf/font/encoding/test_zapf_dingbats_encoding.rb +16 -0
- data/test/hexapdf/font/test_encoding.rb +27 -0
- data/test/hexapdf/font/test_true_type_wrapper.rb +110 -0
- data/test/hexapdf/font/test_type1_wrapper.rb +66 -0
- data/test/hexapdf/font/true_type/common.rb +19 -0
- data/test/hexapdf/font/true_type/table/test_cmap.rb +59 -0
- data/test/hexapdf/font/true_type/table/test_cmap_subtable.rb +133 -0
- data/test/hexapdf/font/true_type/table/test_directory.rb +35 -0
- data/test/hexapdf/font/true_type/table/test_glyf.rb +58 -0
- data/test/hexapdf/font/true_type/table/test_head.rb +76 -0
- data/test/hexapdf/font/true_type/table/test_hhea.rb +40 -0
- data/test/hexapdf/font/true_type/table/test_hmtx.rb +38 -0
- data/test/hexapdf/font/true_type/table/test_loca.rb +43 -0
- data/test/hexapdf/font/true_type/table/test_maxp.rb +62 -0
- data/test/hexapdf/font/true_type/table/test_name.rb +95 -0
- data/test/hexapdf/font/true_type/table/test_os2.rb +65 -0
- data/test/hexapdf/font/true_type/table/test_post.rb +89 -0
- data/test/hexapdf/font/true_type/test_font.rb +120 -0
- data/test/hexapdf/font/true_type/test_table.rb +41 -0
- data/test/hexapdf/font/type1/test_afm_parser.rb +51 -0
- data/test/hexapdf/font/type1/test_font.rb +68 -0
- data/test/hexapdf/font/type1/test_pfb_parser.rb +37 -0
- data/test/hexapdf/font_loader/test_from_configuration.rb +28 -0
- data/test/hexapdf/font_loader/test_standard14.rb +22 -0
- data/test/hexapdf/image_loader/test_jpeg.rb +83 -0
- data/test/hexapdf/image_loader/test_pdf.rb +47 -0
- data/test/hexapdf/image_loader/test_png.rb +258 -0
- data/test/hexapdf/task/test_dereference.rb +46 -0
- data/test/hexapdf/task/test_optimize.rb +137 -0
- data/test/hexapdf/test_configuration.rb +82 -0
- data/test/hexapdf/test_data_dir.rb +32 -0
- data/test/hexapdf/test_dictionary.rb +284 -0
- data/test/hexapdf/test_dictionary_fields.rb +185 -0
- data/test/hexapdf/test_document.rb +574 -0
- data/test/hexapdf/test_document_utils.rb +144 -0
- data/test/hexapdf/test_filter.rb +96 -0
- data/test/hexapdf/test_font_utils.rb +47 -0
- data/test/hexapdf/test_importer.rb +78 -0
- data/test/hexapdf/test_object.rb +177 -0
- data/test/hexapdf/test_parser.rb +394 -0
- data/test/hexapdf/test_rectangle.rb +36 -0
- data/test/hexapdf/test_reference.rb +41 -0
- data/test/hexapdf/test_revision.rb +139 -0
- data/test/hexapdf/test_revisions.rb +93 -0
- data/test/hexapdf/test_serializer.rb +169 -0
- data/test/hexapdf/test_stream.rb +262 -0
- data/test/hexapdf/test_tokenizer.rb +30 -0
- data/test/hexapdf/test_writer.rb +120 -0
- data/test/hexapdf/test_xref_section.rb +35 -0
- data/test/hexapdf/type/test_catalog.rb +30 -0
- data/test/hexapdf/type/test_embedded_file.rb +16 -0
- data/test/hexapdf/type/test_file_specification.rb +148 -0
- data/test/hexapdf/type/test_font.rb +35 -0
- data/test/hexapdf/type/test_font_descriptor.rb +51 -0
- data/test/hexapdf/type/test_font_simple.rb +190 -0
- data/test/hexapdf/type/test_font_type1.rb +128 -0
- data/test/hexapdf/type/test_form.rb +60 -0
- data/test/hexapdf/type/test_info.rb +14 -0
- data/test/hexapdf/type/test_names.rb +9 -0
- data/test/hexapdf/type/test_object_stream.rb +84 -0
- data/test/hexapdf/type/test_page.rb +260 -0
- data/test/hexapdf/type/test_page_tree_node.rb +255 -0
- data/test/hexapdf/type/test_resources.rb +167 -0
- data/test/hexapdf/type/test_trailer.rb +109 -0
- data/test/hexapdf/type/test_xref_stream.rb +131 -0
- data/test/hexapdf/utils/test_bit_field.rb +47 -0
- data/test/hexapdf/utils/test_lru_cache.rb +22 -0
- data/test/hexapdf/utils/test_object_hash.rb +115 -0
- data/test/hexapdf/utils/test_pdf_doc_encoding.rb +18 -0
- data/test/hexapdf/utils/test_sorted_tree_node.rb +232 -0
- data/test/test_helper.rb +56 -0
- metadata +427 -0
metadata
ADDED
@@ -0,0 +1,427 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: hexapdf
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Thomas Leitner
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-10-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: cmdparse
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.0'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.0.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.0'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.0.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: ronn
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0.7'
|
40
|
+
type: :development
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0.7'
|
47
|
+
description: |-
|
48
|
+
HexaPDF is a pure Ruby library with an accompanying application for working with PDF files.
|
49
|
+
|
50
|
+
In short, it allows creating new PDF files, manipulating existing PDF files, merging multiple PDF files into one, extracting meta information, text, images and files from PDF files, securing PDF files by encrypting them and optimizing PDF files for smaller file size or other criteria.
|
51
|
+
|
52
|
+
HexaPDF was designed with ease of use and performance in mind. It uses lazy loading and lazy computing when possible and tries to produce small PDF files by default.
|
53
|
+
email: t_leitner@gmx.at
|
54
|
+
executables:
|
55
|
+
- hexapdf
|
56
|
+
extensions: []
|
57
|
+
extra_rdoc_files: []
|
58
|
+
files:
|
59
|
+
- CONTRIBUTERS
|
60
|
+
- LICENSE
|
61
|
+
- README.md
|
62
|
+
- Rakefile
|
63
|
+
- VERSION
|
64
|
+
- agpl-3.0.txt
|
65
|
+
- bin/hexapdf
|
66
|
+
- data/hexapdf/afm/Courier-Bold.afm
|
67
|
+
- data/hexapdf/afm/Courier-BoldOblique.afm
|
68
|
+
- data/hexapdf/afm/Courier-Oblique.afm
|
69
|
+
- data/hexapdf/afm/Courier.afm
|
70
|
+
- data/hexapdf/afm/Helvetica-Bold.afm
|
71
|
+
- data/hexapdf/afm/Helvetica-BoldOblique.afm
|
72
|
+
- data/hexapdf/afm/Helvetica-Oblique.afm
|
73
|
+
- data/hexapdf/afm/Helvetica.afm
|
74
|
+
- data/hexapdf/afm/MustRead.html
|
75
|
+
- data/hexapdf/afm/Symbol.afm
|
76
|
+
- data/hexapdf/afm/Times-Bold.afm
|
77
|
+
- data/hexapdf/afm/Times-BoldItalic.afm
|
78
|
+
- data/hexapdf/afm/Times-Italic.afm
|
79
|
+
- data/hexapdf/afm/Times-Roman.afm
|
80
|
+
- data/hexapdf/afm/ZapfDingbats.afm
|
81
|
+
- data/hexapdf/encoding/glyphlist.txt
|
82
|
+
- data/hexapdf/encoding/zapfdingbats.txt
|
83
|
+
- examples/arc.rb
|
84
|
+
- examples/graphics.rb
|
85
|
+
- examples/hello_world.rb
|
86
|
+
- examples/machupicchu.jpg
|
87
|
+
- examples/merging.rb
|
88
|
+
- examples/optimizing.rb
|
89
|
+
- examples/show_char_bboxes.rb
|
90
|
+
- examples/standard_pdf_fonts.rb
|
91
|
+
- examples/truetype.rb
|
92
|
+
- lib/hexapdf.rb
|
93
|
+
- lib/hexapdf/cli.rb
|
94
|
+
- lib/hexapdf/cli/extract.rb
|
95
|
+
- lib/hexapdf/cli/info.rb
|
96
|
+
- lib/hexapdf/cli/inspect.rb
|
97
|
+
- lib/hexapdf/cli/modify.rb
|
98
|
+
- lib/hexapdf/configuration.rb
|
99
|
+
- lib/hexapdf/content.rb
|
100
|
+
- lib/hexapdf/content/canvas.rb
|
101
|
+
- lib/hexapdf/content/color_space.rb
|
102
|
+
- lib/hexapdf/content/graphic_object.rb
|
103
|
+
- lib/hexapdf/content/graphic_object/arc.rb
|
104
|
+
- lib/hexapdf/content/graphic_object/endpoint_arc.rb
|
105
|
+
- lib/hexapdf/content/graphic_object/solid_arc.rb
|
106
|
+
- lib/hexapdf/content/graphics_state.rb
|
107
|
+
- lib/hexapdf/content/operator.rb
|
108
|
+
- lib/hexapdf/content/parser.rb
|
109
|
+
- lib/hexapdf/content/processor.rb
|
110
|
+
- lib/hexapdf/content/transformation_matrix.rb
|
111
|
+
- lib/hexapdf/data_dir.rb
|
112
|
+
- lib/hexapdf/dictionary.rb
|
113
|
+
- lib/hexapdf/dictionary_fields.rb
|
114
|
+
- lib/hexapdf/document.rb
|
115
|
+
- lib/hexapdf/document_utils.rb
|
116
|
+
- lib/hexapdf/encryption.rb
|
117
|
+
- lib/hexapdf/encryption/aes.rb
|
118
|
+
- lib/hexapdf/encryption/arc4.rb
|
119
|
+
- lib/hexapdf/encryption/fast_aes.rb
|
120
|
+
- lib/hexapdf/encryption/fast_arc4.rb
|
121
|
+
- lib/hexapdf/encryption/identity.rb
|
122
|
+
- lib/hexapdf/encryption/ruby_aes.rb
|
123
|
+
- lib/hexapdf/encryption/ruby_arc4.rb
|
124
|
+
- lib/hexapdf/encryption/security_handler.rb
|
125
|
+
- lib/hexapdf/encryption/standard_security_handler.rb
|
126
|
+
- lib/hexapdf/error.rb
|
127
|
+
- lib/hexapdf/filter.rb
|
128
|
+
- lib/hexapdf/filter/ascii85_decode.rb
|
129
|
+
- lib/hexapdf/filter/ascii_hex_decode.rb
|
130
|
+
- lib/hexapdf/filter/dct_decode.rb
|
131
|
+
- lib/hexapdf/filter/encryption.rb
|
132
|
+
- lib/hexapdf/filter/flate_decode.rb
|
133
|
+
- lib/hexapdf/filter/jpx_decode.rb
|
134
|
+
- lib/hexapdf/filter/lzw_decode.rb
|
135
|
+
- lib/hexapdf/filter/predictor.rb
|
136
|
+
- lib/hexapdf/filter/run_length_decode.rb
|
137
|
+
- lib/hexapdf/font/cmap.rb
|
138
|
+
- lib/hexapdf/font/cmap/parser.rb
|
139
|
+
- lib/hexapdf/font/cmap/writer.rb
|
140
|
+
- lib/hexapdf/font/encoding.rb
|
141
|
+
- lib/hexapdf/font/encoding/base.rb
|
142
|
+
- lib/hexapdf/font/encoding/difference_encoding.rb
|
143
|
+
- lib/hexapdf/font/encoding/glyph_list.rb
|
144
|
+
- lib/hexapdf/font/encoding/mac_expert_encoding.rb
|
145
|
+
- lib/hexapdf/font/encoding/mac_roman_encoding.rb
|
146
|
+
- lib/hexapdf/font/encoding/standard_encoding.rb
|
147
|
+
- lib/hexapdf/font/encoding/symbol_encoding.rb
|
148
|
+
- lib/hexapdf/font/encoding/win_ansi_encoding.rb
|
149
|
+
- lib/hexapdf/font/encoding/zapf_dingbats_encoding.rb
|
150
|
+
- lib/hexapdf/font/true_type.rb
|
151
|
+
- lib/hexapdf/font/true_type/font.rb
|
152
|
+
- lib/hexapdf/font/true_type/table.rb
|
153
|
+
- lib/hexapdf/font/true_type/table/cmap.rb
|
154
|
+
- lib/hexapdf/font/true_type/table/cmap_subtable.rb
|
155
|
+
- lib/hexapdf/font/true_type/table/directory.rb
|
156
|
+
- lib/hexapdf/font/true_type/table/glyf.rb
|
157
|
+
- lib/hexapdf/font/true_type/table/head.rb
|
158
|
+
- lib/hexapdf/font/true_type/table/hhea.rb
|
159
|
+
- lib/hexapdf/font/true_type/table/hmtx.rb
|
160
|
+
- lib/hexapdf/font/true_type/table/loca.rb
|
161
|
+
- lib/hexapdf/font/true_type/table/maxp.rb
|
162
|
+
- lib/hexapdf/font/true_type/table/name.rb
|
163
|
+
- lib/hexapdf/font/true_type/table/os2.rb
|
164
|
+
- lib/hexapdf/font/true_type/table/post.rb
|
165
|
+
- lib/hexapdf/font/true_type_wrapper.rb
|
166
|
+
- lib/hexapdf/font/type1.rb
|
167
|
+
- lib/hexapdf/font/type1/afm_parser.rb
|
168
|
+
- lib/hexapdf/font/type1/character_metrics.rb
|
169
|
+
- lib/hexapdf/font/type1/font.rb
|
170
|
+
- lib/hexapdf/font/type1/font_metrics.rb
|
171
|
+
- lib/hexapdf/font/type1/pfb_parser.rb
|
172
|
+
- lib/hexapdf/font/type1_wrapper.rb
|
173
|
+
- lib/hexapdf/font_loader.rb
|
174
|
+
- lib/hexapdf/font_loader/from_configuration.rb
|
175
|
+
- lib/hexapdf/font_loader/standard14.rb
|
176
|
+
- lib/hexapdf/font_utils.rb
|
177
|
+
- lib/hexapdf/image_loader.rb
|
178
|
+
- lib/hexapdf/image_loader/jpeg.rb
|
179
|
+
- lib/hexapdf/image_loader/pdf.rb
|
180
|
+
- lib/hexapdf/image_loader/png.rb
|
181
|
+
- lib/hexapdf/importer.rb
|
182
|
+
- lib/hexapdf/name_tree_node.rb
|
183
|
+
- lib/hexapdf/number_tree_node.rb
|
184
|
+
- lib/hexapdf/object.rb
|
185
|
+
- lib/hexapdf/parser.rb
|
186
|
+
- lib/hexapdf/rectangle.rb
|
187
|
+
- lib/hexapdf/reference.rb
|
188
|
+
- lib/hexapdf/revision.rb
|
189
|
+
- lib/hexapdf/revisions.rb
|
190
|
+
- lib/hexapdf/serializer.rb
|
191
|
+
- lib/hexapdf/stream.rb
|
192
|
+
- lib/hexapdf/task.rb
|
193
|
+
- lib/hexapdf/task/dereference.rb
|
194
|
+
- lib/hexapdf/task/optimize.rb
|
195
|
+
- lib/hexapdf/tokenizer.rb
|
196
|
+
- lib/hexapdf/type.rb
|
197
|
+
- lib/hexapdf/type/catalog.rb
|
198
|
+
- lib/hexapdf/type/embedded_file.rb
|
199
|
+
- lib/hexapdf/type/file_specification.rb
|
200
|
+
- lib/hexapdf/type/font.rb
|
201
|
+
- lib/hexapdf/type/font_descriptor.rb
|
202
|
+
- lib/hexapdf/type/font_simple.rb
|
203
|
+
- lib/hexapdf/type/font_true_type.rb
|
204
|
+
- lib/hexapdf/type/font_type1.rb
|
205
|
+
- lib/hexapdf/type/form.rb
|
206
|
+
- lib/hexapdf/type/graphics_state_parameter.rb
|
207
|
+
- lib/hexapdf/type/image.rb
|
208
|
+
- lib/hexapdf/type/info.rb
|
209
|
+
- lib/hexapdf/type/names.rb
|
210
|
+
- lib/hexapdf/type/object_stream.rb
|
211
|
+
- lib/hexapdf/type/page.rb
|
212
|
+
- lib/hexapdf/type/page_tree_node.rb
|
213
|
+
- lib/hexapdf/type/resources.rb
|
214
|
+
- lib/hexapdf/type/trailer.rb
|
215
|
+
- lib/hexapdf/type/viewer_preferences.rb
|
216
|
+
- lib/hexapdf/type/xref_stream.rb
|
217
|
+
- lib/hexapdf/utils/bit_field.rb
|
218
|
+
- lib/hexapdf/utils/bit_stream.rb
|
219
|
+
- lib/hexapdf/utils/lru_cache.rb
|
220
|
+
- lib/hexapdf/utils/math_helpers.rb
|
221
|
+
- lib/hexapdf/utils/object_hash.rb
|
222
|
+
- lib/hexapdf/utils/pdf_doc_encoding.rb
|
223
|
+
- lib/hexapdf/utils/sorted_tree_node.rb
|
224
|
+
- lib/hexapdf/version.rb
|
225
|
+
- lib/hexapdf/writer.rb
|
226
|
+
- lib/hexapdf/xref_section.rb
|
227
|
+
- man/man1/hexapdf.1
|
228
|
+
- test/data/aes-test-vectors/CBCGFSbox-128-decrypt.data.gz
|
229
|
+
- test/data/aes-test-vectors/CBCGFSbox-128-encrypt.data.gz
|
230
|
+
- test/data/aes-test-vectors/CBCGFSbox-192-decrypt.data.gz
|
231
|
+
- test/data/aes-test-vectors/CBCGFSbox-192-encrypt.data.gz
|
232
|
+
- test/data/aes-test-vectors/CBCGFSbox-256-decrypt.data.gz
|
233
|
+
- test/data/aes-test-vectors/CBCGFSbox-256-encrypt.data.gz
|
234
|
+
- test/data/aes-test-vectors/CBCKeySbox-128-decrypt.data.gz
|
235
|
+
- test/data/aes-test-vectors/CBCKeySbox-128-encrypt.data.gz
|
236
|
+
- test/data/aes-test-vectors/CBCKeySbox-192-decrypt.data.gz
|
237
|
+
- test/data/aes-test-vectors/CBCKeySbox-192-encrypt.data.gz
|
238
|
+
- test/data/aes-test-vectors/CBCKeySbox-256-decrypt.data.gz
|
239
|
+
- test/data/aes-test-vectors/CBCKeySbox-256-encrypt.data.gz
|
240
|
+
- test/data/aes-test-vectors/CBCVarKey-128-decrypt.data.gz
|
241
|
+
- test/data/aes-test-vectors/CBCVarKey-128-encrypt.data.gz
|
242
|
+
- test/data/aes-test-vectors/CBCVarKey-192-decrypt.data.gz
|
243
|
+
- test/data/aes-test-vectors/CBCVarKey-192-encrypt.data.gz
|
244
|
+
- test/data/aes-test-vectors/CBCVarKey-256-decrypt.data.gz
|
245
|
+
- test/data/aes-test-vectors/CBCVarKey-256-encrypt.data.gz
|
246
|
+
- test/data/aes-test-vectors/CBCVarTxt-128-decrypt.data.gz
|
247
|
+
- test/data/aes-test-vectors/CBCVarTxt-128-encrypt.data.gz
|
248
|
+
- test/data/aes-test-vectors/CBCVarTxt-192-decrypt.data.gz
|
249
|
+
- test/data/aes-test-vectors/CBCVarTxt-192-encrypt.data.gz
|
250
|
+
- test/data/aes-test-vectors/CBCVarTxt-256-decrypt.data.gz
|
251
|
+
- test/data/aes-test-vectors/CBCVarTxt-256-encrypt.data.gz
|
252
|
+
- test/data/fonts/Ubuntu-Title.ttf
|
253
|
+
- test/data/images/cmyk.jpg
|
254
|
+
- test/data/images/fillbytes.jpg
|
255
|
+
- test/data/images/gray.jpg
|
256
|
+
- test/data/images/greyscale-1bit.png
|
257
|
+
- test/data/images/greyscale-2bit.png
|
258
|
+
- test/data/images/greyscale-4bit.png
|
259
|
+
- test/data/images/greyscale-8bit.png
|
260
|
+
- test/data/images/greyscale-alpha-8bit.png
|
261
|
+
- test/data/images/greyscale-trns-8bit.png
|
262
|
+
- test/data/images/greyscale-with-gamma1.0.png
|
263
|
+
- test/data/images/greyscale-with-gamma1.5.png
|
264
|
+
- test/data/images/indexed-1bit.png
|
265
|
+
- test/data/images/indexed-2bit.png
|
266
|
+
- test/data/images/indexed-4bit.png
|
267
|
+
- test/data/images/indexed-8bit.png
|
268
|
+
- test/data/images/indexed-alpha-4bit.png
|
269
|
+
- test/data/images/indexed-alpha-8bit.png
|
270
|
+
- test/data/images/rgb.jpg
|
271
|
+
- test/data/images/truecolour-8bit.png
|
272
|
+
- test/data/images/truecolour-alpha-8bit.png
|
273
|
+
- test/data/images/truecolour-gama-chrm-8bit.png
|
274
|
+
- test/data/images/truecolour-srgb-8bit.png
|
275
|
+
- test/data/minimal.pdf
|
276
|
+
- test/data/standard-security-handler/README
|
277
|
+
- test/data/standard-security-handler/bothpwd-aes-128bit-V4.pdf
|
278
|
+
- test/data/standard-security-handler/bothpwd-aes-256bit-V5.pdf
|
279
|
+
- test/data/standard-security-handler/bothpwd-arc4-128bit-V2.pdf
|
280
|
+
- test/data/standard-security-handler/bothpwd-arc4-128bit-V4.pdf
|
281
|
+
- test/data/standard-security-handler/bothpwd-arc4-40bit-V1.pdf
|
282
|
+
- test/data/standard-security-handler/nopwd-aes-128bit-V4.pdf
|
283
|
+
- test/data/standard-security-handler/nopwd-aes-256bit-V5.pdf
|
284
|
+
- test/data/standard-security-handler/nopwd-arc4-128bit-V2.pdf
|
285
|
+
- test/data/standard-security-handler/nopwd-arc4-128bit-V4.pdf
|
286
|
+
- test/data/standard-security-handler/nopwd-arc4-40bit-V1.pdf
|
287
|
+
- test/data/standard-security-handler/ownerpwd-aes-128bit-V4.pdf
|
288
|
+
- test/data/standard-security-handler/ownerpwd-aes-256bit-V5.pdf
|
289
|
+
- test/data/standard-security-handler/ownerpwd-arc4-128bit-V2.pdf
|
290
|
+
- test/data/standard-security-handler/ownerpwd-arc4-128bit-V4.pdf
|
291
|
+
- test/data/standard-security-handler/ownerpwd-arc4-40bit-V1.pdf
|
292
|
+
- test/data/standard-security-handler/userpwd-aes-128bit-V4.pdf
|
293
|
+
- test/data/standard-security-handler/userpwd-aes-256bit-V5.pdf
|
294
|
+
- test/data/standard-security-handler/userpwd-arc4-128bit-V2.pdf
|
295
|
+
- test/data/standard-security-handler/userpwd-arc4-128bit-V4.pdf
|
296
|
+
- test/data/standard-security-handler/userpwd-arc4-40bit-V1.pdf
|
297
|
+
- test/hexapdf/common_tokenizer_tests.rb
|
298
|
+
- test/hexapdf/content/common.rb
|
299
|
+
- test/hexapdf/content/graphic_object/test_arc.rb
|
300
|
+
- test/hexapdf/content/graphic_object/test_endpoint_arc.rb
|
301
|
+
- test/hexapdf/content/graphic_object/test_solid_arc.rb
|
302
|
+
- test/hexapdf/content/test_canvas.rb
|
303
|
+
- test/hexapdf/content/test_color_space.rb
|
304
|
+
- test/hexapdf/content/test_graphics_state.rb
|
305
|
+
- test/hexapdf/content/test_operator.rb
|
306
|
+
- test/hexapdf/content/test_parser.rb
|
307
|
+
- test/hexapdf/content/test_processor.rb
|
308
|
+
- test/hexapdf/content/test_transformation_matrix.rb
|
309
|
+
- test/hexapdf/encryption/common.rb
|
310
|
+
- test/hexapdf/encryption/test_aes.rb
|
311
|
+
- test/hexapdf/encryption/test_arc4.rb
|
312
|
+
- test/hexapdf/encryption/test_fast_aes.rb
|
313
|
+
- test/hexapdf/encryption/test_fast_arc4.rb
|
314
|
+
- test/hexapdf/encryption/test_identity.rb
|
315
|
+
- test/hexapdf/encryption/test_ruby_aes.rb
|
316
|
+
- test/hexapdf/encryption/test_ruby_arc4.rb
|
317
|
+
- test/hexapdf/encryption/test_security_handler.rb
|
318
|
+
- test/hexapdf/encryption/test_standard_security_handler.rb
|
319
|
+
- test/hexapdf/filter/common.rb
|
320
|
+
- test/hexapdf/filter/test_ascii85_decode.rb
|
321
|
+
- test/hexapdf/filter/test_ascii_hex_decode.rb
|
322
|
+
- test/hexapdf/filter/test_encryption.rb
|
323
|
+
- test/hexapdf/filter/test_flate_decode.rb
|
324
|
+
- test/hexapdf/filter/test_lzw_decode.rb
|
325
|
+
- test/hexapdf/filter/test_predictor.rb
|
326
|
+
- test/hexapdf/filter/test_run_length_decode.rb
|
327
|
+
- test/hexapdf/font/cmap/test_parser.rb
|
328
|
+
- test/hexapdf/font/cmap/test_writer.rb
|
329
|
+
- test/hexapdf/font/encoding/test_base.rb
|
330
|
+
- test/hexapdf/font/encoding/test_difference_encoding.rb
|
331
|
+
- test/hexapdf/font/encoding/test_glyph_list.rb
|
332
|
+
- test/hexapdf/font/encoding/test_zapf_dingbats_encoding.rb
|
333
|
+
- test/hexapdf/font/test_encoding.rb
|
334
|
+
- test/hexapdf/font/test_true_type_wrapper.rb
|
335
|
+
- test/hexapdf/font/test_type1_wrapper.rb
|
336
|
+
- test/hexapdf/font/true_type/common.rb
|
337
|
+
- test/hexapdf/font/true_type/table/test_cmap.rb
|
338
|
+
- test/hexapdf/font/true_type/table/test_cmap_subtable.rb
|
339
|
+
- test/hexapdf/font/true_type/table/test_directory.rb
|
340
|
+
- test/hexapdf/font/true_type/table/test_glyf.rb
|
341
|
+
- test/hexapdf/font/true_type/table/test_head.rb
|
342
|
+
- test/hexapdf/font/true_type/table/test_hhea.rb
|
343
|
+
- test/hexapdf/font/true_type/table/test_hmtx.rb
|
344
|
+
- test/hexapdf/font/true_type/table/test_loca.rb
|
345
|
+
- test/hexapdf/font/true_type/table/test_maxp.rb
|
346
|
+
- test/hexapdf/font/true_type/table/test_name.rb
|
347
|
+
- test/hexapdf/font/true_type/table/test_os2.rb
|
348
|
+
- test/hexapdf/font/true_type/table/test_post.rb
|
349
|
+
- test/hexapdf/font/true_type/test_font.rb
|
350
|
+
- test/hexapdf/font/true_type/test_table.rb
|
351
|
+
- test/hexapdf/font/type1/test_afm_parser.rb
|
352
|
+
- test/hexapdf/font/type1/test_font.rb
|
353
|
+
- test/hexapdf/font/type1/test_pfb_parser.rb
|
354
|
+
- test/hexapdf/font_loader/test_from_configuration.rb
|
355
|
+
- test/hexapdf/font_loader/test_standard14.rb
|
356
|
+
- test/hexapdf/image_loader/test_jpeg.rb
|
357
|
+
- test/hexapdf/image_loader/test_pdf.rb
|
358
|
+
- test/hexapdf/image_loader/test_png.rb
|
359
|
+
- test/hexapdf/task/test_dereference.rb
|
360
|
+
- test/hexapdf/task/test_optimize.rb
|
361
|
+
- test/hexapdf/test_configuration.rb
|
362
|
+
- test/hexapdf/test_data_dir.rb
|
363
|
+
- test/hexapdf/test_dictionary.rb
|
364
|
+
- test/hexapdf/test_dictionary_fields.rb
|
365
|
+
- test/hexapdf/test_document.rb
|
366
|
+
- test/hexapdf/test_document_utils.rb
|
367
|
+
- test/hexapdf/test_filter.rb
|
368
|
+
- test/hexapdf/test_font_utils.rb
|
369
|
+
- test/hexapdf/test_importer.rb
|
370
|
+
- test/hexapdf/test_object.rb
|
371
|
+
- test/hexapdf/test_parser.rb
|
372
|
+
- test/hexapdf/test_rectangle.rb
|
373
|
+
- test/hexapdf/test_reference.rb
|
374
|
+
- test/hexapdf/test_revision.rb
|
375
|
+
- test/hexapdf/test_revisions.rb
|
376
|
+
- test/hexapdf/test_serializer.rb
|
377
|
+
- test/hexapdf/test_stream.rb
|
378
|
+
- test/hexapdf/test_tokenizer.rb
|
379
|
+
- test/hexapdf/test_writer.rb
|
380
|
+
- test/hexapdf/test_xref_section.rb
|
381
|
+
- test/hexapdf/type/test_catalog.rb
|
382
|
+
- test/hexapdf/type/test_embedded_file.rb
|
383
|
+
- test/hexapdf/type/test_file_specification.rb
|
384
|
+
- test/hexapdf/type/test_font.rb
|
385
|
+
- test/hexapdf/type/test_font_descriptor.rb
|
386
|
+
- test/hexapdf/type/test_font_simple.rb
|
387
|
+
- test/hexapdf/type/test_font_type1.rb
|
388
|
+
- test/hexapdf/type/test_form.rb
|
389
|
+
- test/hexapdf/type/test_info.rb
|
390
|
+
- test/hexapdf/type/test_names.rb
|
391
|
+
- test/hexapdf/type/test_object_stream.rb
|
392
|
+
- test/hexapdf/type/test_page.rb
|
393
|
+
- test/hexapdf/type/test_page_tree_node.rb
|
394
|
+
- test/hexapdf/type/test_resources.rb
|
395
|
+
- test/hexapdf/type/test_trailer.rb
|
396
|
+
- test/hexapdf/type/test_xref_stream.rb
|
397
|
+
- test/hexapdf/utils/test_bit_field.rb
|
398
|
+
- test/hexapdf/utils/test_lru_cache.rb
|
399
|
+
- test/hexapdf/utils/test_object_hash.rb
|
400
|
+
- test/hexapdf/utils/test_pdf_doc_encoding.rb
|
401
|
+
- test/hexapdf/utils/test_sorted_tree_node.rb
|
402
|
+
- test/test_helper.rb
|
403
|
+
homepage: http://hexapdf.gettalong.org
|
404
|
+
licenses:
|
405
|
+
- AGPL-3.0
|
406
|
+
metadata: {}
|
407
|
+
post_install_message:
|
408
|
+
rdoc_options: []
|
409
|
+
require_paths:
|
410
|
+
- lib
|
411
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
412
|
+
requirements:
|
413
|
+
- - ">="
|
414
|
+
- !ruby/object:Gem::Version
|
415
|
+
version: '0'
|
416
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
417
|
+
requirements:
|
418
|
+
- - ">="
|
419
|
+
- !ruby/object:Gem::Version
|
420
|
+
version: '0'
|
421
|
+
requirements: []
|
422
|
+
rubyforge_project:
|
423
|
+
rubygems_version: 2.5.1
|
424
|
+
signing_key:
|
425
|
+
specification_version: 4
|
426
|
+
summary: HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
427
|
+
test_files: []
|