hexapdf 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1c10b3600c81488af01c877e24fc31aa859968e8
|
4
|
+
data.tar.gz: 6bdde619dae45921219a100612fd67e3fd1e1317
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9b79e62cf749a111b4a81a6ce7dab39dfca4b66ba47cd9961ab7452fb75a75373bb01a088659d7bca31429969341b980e75a3a39008525effb2bd116d0162a69
|
7
|
+
data.tar.gz: b09a691c6f92f6035a73f226ec0d566f2d48a18082478a03037ea4dd0dded3698d25a0e403aa7f51cea8d9481bafd923f8de8d9510a961994c0f5e733aa12bbf
|
data/CONTRIBUTERS
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
2
|
+
Copyright (C) 2016 Thomas Leitner
|
3
|
+
|
4
|
+
HexaPDF is free software: you can redistribute it and/or modify it
|
5
|
+
under the terms of the GNU Affero General Public License version 3 as
|
6
|
+
published by the Free Software Foundation with the addition of the
|
7
|
+
following permission added to Section 15 as permitted in Section 7(a):
|
8
|
+
FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
|
9
|
+
THOMAS LEITNER, THOMAS LEITNER DISCLAIMS THE WARRANTY OF NON
|
10
|
+
INFRINGEMENT OF THIRD PARTY RIGHTS.
|
11
|
+
|
12
|
+
HexaPDF is distributed in the hope that it will be useful, but WITHOUT
|
13
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
14
|
+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
|
15
|
+
License for more details.
|
16
|
+
|
17
|
+
You should have received a copy of the GNU Affero General Public License
|
18
|
+
along with HexaPDF. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
|
20
|
+
The interactive user interfaces in modified source and object code
|
21
|
+
versions of HexaPDF must display Appropriate Legal Notices, as required
|
22
|
+
under Section 5 of the GNU Affero General Public License version 3.
|
23
|
+
|
24
|
+
In accordance with Section 7(b) of the GNU Affero General Public
|
25
|
+
License, a covered work must retain the producer line in every PDF that
|
26
|
+
is created or manipulated using HexaPDF.
|
data/README.md
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
2
|
+
|
3
|
+
HexaPDF is a pure Ruby library with an accompanying application for working with PDF files. In
|
4
|
+
short, it allows
|
5
|
+
|
6
|
+
* **creating** new PDF files,
|
7
|
+
* **manipulating** existing PDF files,
|
8
|
+
* **merging** multiple PDF files into one,
|
9
|
+
* **extracting** meta information, text, images and files from PDF files,
|
10
|
+
* **securing** PDF files by encrypting them and
|
11
|
+
* **optimizing** PDF files for smaller file size or other criteria.
|
12
|
+
|
13
|
+
HexaPDF was designed with ease of use and performance in mind. It uses lazy loading and lazy
|
14
|
+
computing when possible and tries to produce small PDF files by default.
|
15
|
+
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
The HexaPDF distribution provides the library as well as the `hexapdf` application. The application
|
20
|
+
can be used to perform common tasks like merging PDF files, decrypting or encrypting PDF files and
|
21
|
+
so on.
|
22
|
+
|
23
|
+
When HexaPDF is used as a library, it can be used to do all the task that the command line
|
24
|
+
application does and much more. Here is a "Hello World" example that shows how to create a simple
|
25
|
+
PDF file:
|
26
|
+
|
27
|
+
~~~ ruby
|
28
|
+
require 'hexapdf'
|
29
|
+
|
30
|
+
doc = HexaPDF::Document.new
|
31
|
+
canvas = doc.pages.add_page.canvas
|
32
|
+
canvas.font('Helvetica', size: 100)
|
33
|
+
canvas.text("Hello World!", at: [20, 400])
|
34
|
+
doc.write("hello-world.pdf")
|
35
|
+
~~~
|
36
|
+
|
37
|
+
For detailed information have a look at the [HexaPDF website][website] where you will the API
|
38
|
+
documentation, example code and more.
|
39
|
+
|
40
|
+
[website]: http://hexapdf.gettalong.org
|
41
|
+
|
42
|
+
|
43
|
+
## Requirements and Installation
|
44
|
+
|
45
|
+
Since HexaPDF is written in Ruby, a working Ruby installation is needed - see the
|
46
|
+
[official installation documentation][rbinstall] for details. Note that you need Ruby version 2.3 or
|
47
|
+
higher as prior versions are not (officially) supported!
|
48
|
+
|
49
|
+
Apart from Ruby itself the HexaPDF library has no external dependencies. The `hexapdf` application
|
50
|
+
has a dependency on `cmdparse`, a command line parsing library.
|
51
|
+
|
52
|
+
HexaPDF itself is distributed via Rubygems and therefore easily installable via `gem install
|
53
|
+
hexapdf`.
|
54
|
+
|
55
|
+
[rbinstall]: https://www.ruby-lang.org/en/documentation/installation/
|
56
|
+
|
57
|
+
|
58
|
+
## Difference to Prawn
|
59
|
+
|
60
|
+
[Prawn] is a Ruby library that can be used for creating PDF files. It has been in development since
|
61
|
+
2008 and currently provides more features in regard to PDF content creation than HexaPDF.
|
62
|
+
|
63
|
+
So why use HexaPDF? Because it differs significantly from Prawn in how it is implemented:
|
64
|
+
|
65
|
+
* The architecture of HexaPDF is based on the object model of the PDF standard. This makes extending
|
66
|
+
HexaPDF very easy and allows for **reading PDF files for templating purposes**.
|
67
|
+
|
68
|
+
* HexaPDF will provide a high level layer for **composing a document of individual elements** that
|
69
|
+
are automatically layouted. Such elements can be headers, paragraphs, code blocks, ... or links,
|
70
|
+
emphasized text and so on. These elements can be customized and additional element types easily
|
71
|
+
added.
|
72
|
+
|
73
|
+
[Prawn]: http://prawnpdf.org
|
74
|
+
|
75
|
+
|
76
|
+
## License
|
77
|
+
|
78
|
+
See the LICENSE file for licensing details.
|
79
|
+
|
80
|
+
|
81
|
+
## Contributing
|
82
|
+
|
83
|
+
See <http://hexapdf.gettalong.org/contributing.html> for more information.
|
84
|
+
|
85
|
+
|
86
|
+
## Author
|
87
|
+
|
88
|
+
Thomas Leitner, <http://gettalong.org>
|
data/Rakefile
ADDED
@@ -0,0 +1,121 @@
|
|
1
|
+
require 'rake/testtask'
|
2
|
+
require 'rake/clean'
|
3
|
+
require 'rubygems/package_task'
|
4
|
+
|
5
|
+
$:.unshift('lib')
|
6
|
+
require 'hexapdf'
|
7
|
+
|
8
|
+
Rake::TestTask.new do |t|
|
9
|
+
t.libs << 'test'
|
10
|
+
t.test_files = FileList['test/**/*.rb']
|
11
|
+
t.verbose = false
|
12
|
+
t.warning = true
|
13
|
+
end
|
14
|
+
|
15
|
+
namespace :dev do
|
16
|
+
PKG_FILES = FileList.new([
|
17
|
+
'Rakefile',
|
18
|
+
'LICENSE', 'agpl-3.0.txt',
|
19
|
+
'README.md',
|
20
|
+
'VERSION', 'CONTRIBUTERS',
|
21
|
+
'bin/*',
|
22
|
+
'lib/**/*.rb',
|
23
|
+
'man/man1/hexapdf.1',
|
24
|
+
'data/**/*',
|
25
|
+
'examples/*',
|
26
|
+
'test/**/*'
|
27
|
+
])
|
28
|
+
|
29
|
+
CLOBBER << "man/man1/hexapdf.1"
|
30
|
+
file 'man/man1/hexapdf.1' => ['man/man1/hexapdf.1.md'] do
|
31
|
+
puts "Generating hexapdf man page"
|
32
|
+
system "ronn --pipe -r man/man1/hexapdf.1.md > man/man1/hexapdf.1"
|
33
|
+
end
|
34
|
+
|
35
|
+
CLOBBER << "VERSION"
|
36
|
+
file 'VERSION' do
|
37
|
+
puts "Generating VERSION file"
|
38
|
+
File.open('VERSION', 'w+') {|file| file.write(HexaPDF::VERSION + "\n")}
|
39
|
+
end
|
40
|
+
|
41
|
+
CLOBBER << 'CONTRIBUTERS'
|
42
|
+
file 'CONTRIBUTERS' do
|
43
|
+
puts "Generating CONTRIBUTERS file"
|
44
|
+
`echo " Count Name" > CONTRIBUTERS`
|
45
|
+
`echo "======= ====" >> CONTRIBUTERS`
|
46
|
+
`git log | grep ^Author: | sed 's/^Author: //' | sort | uniq -c | sort -nr >> CONTRIBUTERS`
|
47
|
+
end
|
48
|
+
|
49
|
+
spec = Gem::Specification.new do |s|
|
50
|
+
s.name = 'hexapdf'
|
51
|
+
s.version = HexaPDF::VERSION
|
52
|
+
s.summary = "HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby"
|
53
|
+
s.description = "HexaPDF is a pure Ruby library with an accompanying application for " \
|
54
|
+
"working with PDF files.\n\nIn short, it allows creating new PDF files, manipulating " \
|
55
|
+
"existing PDF files, merging multiple PDF files into one, extracting meta information, " \
|
56
|
+
"text, images and files from PDF files, securing PDF files by encrypting them and " \
|
57
|
+
"optimizing PDF files for smaller file size or other criteria.\n\nHexaPDF was designed " \
|
58
|
+
"with ease of use and performance in mind. It uses lazy loading and lazy computing when " \
|
59
|
+
"possible and tries to produce small PDF files by default."
|
60
|
+
s.license = 'AGPL-3.0'
|
61
|
+
|
62
|
+
s.files = PKG_FILES.to_a
|
63
|
+
|
64
|
+
s.require_path = 'lib'
|
65
|
+
s.executables = ['hexapdf']
|
66
|
+
s.default_executable = 'hexapdf'
|
67
|
+
s.add_dependency('cmdparse', '~> 3.0', '>= 3.0.1')
|
68
|
+
s.add_development_dependency('ronn', '~> 0.7')
|
69
|
+
|
70
|
+
s.author = 'Thomas Leitner'
|
71
|
+
s.email = 't_leitner@gmx.at'
|
72
|
+
s.homepage = "http://hexapdf.gettalong.org"
|
73
|
+
end
|
74
|
+
|
75
|
+
Gem::PackageTask.new(spec) do |pkg|
|
76
|
+
pkg.need_zip = true
|
77
|
+
pkg.need_tar = true
|
78
|
+
end
|
79
|
+
|
80
|
+
desc "Upload the release to Rubygems"
|
81
|
+
task publish_files: [:package] do
|
82
|
+
sh "gem push pkg/hexapdf-#{HexaPDF::VERSION}.gem"
|
83
|
+
puts 'done'
|
84
|
+
end
|
85
|
+
|
86
|
+
desc 'Release HexaPDF version ' + HexaPDF::VERSION
|
87
|
+
task release: [:clobber, :package, :publish_files]
|
88
|
+
|
89
|
+
CLOBBER << 'hexapdf.gemspec'
|
90
|
+
task :gemspec do
|
91
|
+
puts "Generating Gemspec"
|
92
|
+
contents = spec.to_ruby
|
93
|
+
File.open("hexapdf.gemspec", 'w+') {|f| f.puts(contents)}
|
94
|
+
end
|
95
|
+
|
96
|
+
CODING_LINE = "# -*- encoding: utf-8 -*-\n"
|
97
|
+
|
98
|
+
desc "Insert/Update copyright notice"
|
99
|
+
task :update_copyright do
|
100
|
+
license = File.readlines(File.join(__dir__, 'LICENSE')).map do |l|
|
101
|
+
l.strip.empty? ? "#\n" : "# #{l}"
|
102
|
+
end.join
|
103
|
+
statement = CODING_LINE + "#\n#--\n# This file is part of HexaPDF.\n#\n" + license + "#++\n"
|
104
|
+
inserted = false
|
105
|
+
Dir["lib/**/*.rb"].each do |file|
|
106
|
+
unless File.read(file).start_with?(statement)
|
107
|
+
inserted = true
|
108
|
+
puts "Updating file #{file}"
|
109
|
+
old = File.read(file)
|
110
|
+
unless old.gsub!(/\A#{Regexp.escape(CODING_LINE)}#\n#--.*?\n#\+\+\n/m, statement)
|
111
|
+
old.gsub!(/\A(#{Regexp.escape(CODING_LINE)})?/, statement)
|
112
|
+
end
|
113
|
+
File.write(file, old)
|
114
|
+
end
|
115
|
+
end
|
116
|
+
puts "Look through the above mentioned files and correct all problems" if inserted
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
task clobber: 'dev:clobber'
|
121
|
+
task default: 'test'
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|