hexapdf 0.15.8 → 0.17.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/hexapdf/cli/batch.rb +1 -1
- data/lib/hexapdf/cli/command.rb +10 -1
- data/lib/hexapdf/cli/files.rb +1 -1
- data/lib/hexapdf/cli/fonts.rb +145 -0
- data/lib/hexapdf/cli/form.rb +27 -26
- data/lib/hexapdf/cli/image2pdf.rb +1 -1
- data/lib/hexapdf/cli/images.rb +1 -10
- data/lib/hexapdf/cli/info.rb +1 -1
- data/lib/hexapdf/cli/inspect.rb +1 -1
- data/lib/hexapdf/cli/merge.rb +1 -1
- data/lib/hexapdf/cli/modify.rb +1 -1
- data/lib/hexapdf/cli/optimize.rb +1 -1
- data/lib/hexapdf/cli/split.rb +1 -1
- data/lib/hexapdf/cli/watermark.rb +1 -1
- data/lib/hexapdf/cli.rb +3 -1
- data/lib/hexapdf/composer.rb +1 -1
- data/lib/hexapdf/configuration.rb +11 -2
- data/lib/hexapdf/content/canvas.rb +658 -167
- data/lib/hexapdf/content/color_space.rb +185 -3
- data/lib/hexapdf/content/graphic_object/arc.rb +111 -12
- data/lib/hexapdf/content/graphic_object/endpoint_arc.rb +1 -1
- data/lib/hexapdf/content/graphic_object/geom2d.rb +1 -1
- data/lib/hexapdf/content/graphic_object/solid_arc.rb +1 -1
- data/lib/hexapdf/content/graphic_object.rb +1 -1
- data/lib/hexapdf/content/graphics_state.rb +1 -1
- data/lib/hexapdf/content/operator.rb +1 -1
- data/lib/hexapdf/content/parser.rb +1 -1
- data/lib/hexapdf/content/processor.rb +1 -1
- data/lib/hexapdf/content/transformation_matrix.rb +1 -1
- data/lib/hexapdf/content.rb +1 -1
- data/lib/hexapdf/data_dir.rb +1 -1
- data/lib/hexapdf/dictionary.rb +1 -1
- data/lib/hexapdf/dictionary_fields.rb +30 -4
- data/lib/hexapdf/document/files.rb +3 -3
- data/lib/hexapdf/document/fonts.rb +1 -1
- data/lib/hexapdf/document/images.rb +1 -1
- data/lib/hexapdf/document/pages.rb +1 -1
- data/lib/hexapdf/document.rb +1 -1
- data/lib/hexapdf/encryption/aes.rb +1 -1
- data/lib/hexapdf/encryption/arc4.rb +1 -1
- data/lib/hexapdf/encryption/fast_aes.rb +1 -1
- data/lib/hexapdf/encryption/fast_arc4.rb +1 -1
- data/lib/hexapdf/encryption/identity.rb +1 -1
- data/lib/hexapdf/encryption/ruby_aes.rb +1 -1
- data/lib/hexapdf/encryption/ruby_arc4.rb +1 -1
- data/lib/hexapdf/encryption/security_handler.rb +1 -1
- data/lib/hexapdf/encryption/standard_security_handler.rb +1 -1
- data/lib/hexapdf/encryption.rb +1 -1
- data/lib/hexapdf/error.rb +1 -1
- data/lib/hexapdf/filter/ascii85_decode.rb +1 -1
- data/lib/hexapdf/filter/ascii_hex_decode.rb +1 -1
- data/lib/hexapdf/filter/crypt.rb +1 -1
- data/lib/hexapdf/filter/encryption.rb +1 -1
- data/lib/hexapdf/filter/flate_decode.rb +1 -1
- data/lib/hexapdf/filter/lzw_decode.rb +1 -1
- data/lib/hexapdf/filter/pass_through.rb +1 -1
- data/lib/hexapdf/filter/predictor.rb +1 -1
- data/lib/hexapdf/filter/run_length_decode.rb +1 -1
- data/lib/hexapdf/filter.rb +1 -1
- data/lib/hexapdf/font/cmap/parser.rb +1 -1
- data/lib/hexapdf/font/cmap/writer.rb +1 -1
- data/lib/hexapdf/font/cmap.rb +1 -1
- data/lib/hexapdf/font/encoding/base.rb +1 -1
- data/lib/hexapdf/font/encoding/difference_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/glyph_list.rb +1 -1
- data/lib/hexapdf/font/encoding/mac_expert_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/mac_roman_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/standard_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/symbol_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/win_ansi_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding/zapf_dingbats_encoding.rb +1 -1
- data/lib/hexapdf/font/encoding.rb +1 -1
- data/lib/hexapdf/font/invalid_glyph.rb +1 -1
- data/lib/hexapdf/font/true_type/builder.rb +1 -1
- data/lib/hexapdf/font/true_type/font.rb +1 -1
- data/lib/hexapdf/font/true_type/optimizer.rb +1 -1
- data/lib/hexapdf/font/true_type/subsetter.rb +1 -1
- data/lib/hexapdf/font/true_type/table/cmap.rb +1 -1
- data/lib/hexapdf/font/true_type/table/cmap_subtable.rb +1 -1
- data/lib/hexapdf/font/true_type/table/directory.rb +1 -1
- data/lib/hexapdf/font/true_type/table/glyf.rb +1 -1
- data/lib/hexapdf/font/true_type/table/head.rb +1 -1
- data/lib/hexapdf/font/true_type/table/hhea.rb +1 -1
- data/lib/hexapdf/font/true_type/table/hmtx.rb +1 -1
- data/lib/hexapdf/font/true_type/table/kern.rb +1 -1
- data/lib/hexapdf/font/true_type/table/loca.rb +1 -1
- data/lib/hexapdf/font/true_type/table/maxp.rb +1 -1
- data/lib/hexapdf/font/true_type/table/name.rb +1 -1
- data/lib/hexapdf/font/true_type/table/os2.rb +1 -1
- data/lib/hexapdf/font/true_type/table/post.rb +1 -1
- data/lib/hexapdf/font/true_type/table.rb +1 -1
- data/lib/hexapdf/font/true_type.rb +1 -1
- data/lib/hexapdf/font/true_type_wrapper.rb +1 -1
- data/lib/hexapdf/font/type1/afm_parser.rb +1 -1
- data/lib/hexapdf/font/type1/character_metrics.rb +1 -1
- data/lib/hexapdf/font/type1/font.rb +1 -1
- data/lib/hexapdf/font/type1/font_metrics.rb +1 -1
- data/lib/hexapdf/font/type1/pfb_parser.rb +1 -1
- data/lib/hexapdf/font/type1.rb +1 -1
- data/lib/hexapdf/font/type1_wrapper.rb +1 -1
- data/lib/hexapdf/font_loader/from_configuration.rb +1 -1
- data/lib/hexapdf/font_loader/from_file.rb +1 -1
- data/lib/hexapdf/font_loader/standard14.rb +1 -1
- data/lib/hexapdf/font_loader.rb +1 -1
- data/lib/hexapdf/image_loader/jpeg.rb +1 -1
- data/lib/hexapdf/image_loader/pdf.rb +1 -1
- data/lib/hexapdf/image_loader/png.rb +1 -1
- data/lib/hexapdf/image_loader.rb +1 -1
- data/lib/hexapdf/importer.rb +1 -1
- data/lib/hexapdf/layout/box.rb +4 -2
- data/lib/hexapdf/layout/frame.rb +1 -1
- data/lib/hexapdf/layout/image_box.rb +1 -1
- data/lib/hexapdf/layout/inline_box.rb +1 -1
- data/lib/hexapdf/layout/line.rb +1 -1
- data/lib/hexapdf/layout/numeric_refinements.rb +1 -1
- data/lib/hexapdf/layout/style.rb +40 -2
- data/lib/hexapdf/layout/text_box.rb +1 -1
- data/lib/hexapdf/layout/text_fragment.rb +1 -1
- data/lib/hexapdf/layout/text_layouter.rb +1 -1
- data/lib/hexapdf/layout/text_shaper.rb +1 -1
- data/lib/hexapdf/layout/width_from_polygon.rb +2 -2
- data/lib/hexapdf/layout.rb +1 -1
- data/lib/hexapdf/name_tree_node.rb +1 -1
- data/lib/hexapdf/number_tree_node.rb +1 -1
- data/lib/hexapdf/object.rb +1 -1
- data/lib/hexapdf/parser.rb +2 -2
- data/lib/hexapdf/pdf_array.rb +1 -1
- data/lib/hexapdf/rectangle.rb +1 -1
- data/lib/hexapdf/reference.rb +1 -1
- data/lib/hexapdf/revision.rb +1 -1
- data/lib/hexapdf/revisions.rb +1 -1
- data/lib/hexapdf/serializer.rb +1 -1
- data/lib/hexapdf/stream.rb +1 -1
- data/lib/hexapdf/task/dereference.rb +1 -1
- data/lib/hexapdf/task/optimize.rb +1 -1
- data/lib/hexapdf/task.rb +1 -1
- data/lib/hexapdf/tokenizer.rb +1 -1
- data/lib/hexapdf/type/acro_form/appearance_generator.rb +14 -7
- data/lib/hexapdf/type/acro_form/button_field.rb +53 -28
- data/lib/hexapdf/type/acro_form/choice_field.rb +1 -1
- data/lib/hexapdf/type/acro_form/field.rb +21 -2
- data/lib/hexapdf/type/acro_form/form.rb +48 -29
- data/lib/hexapdf/type/acro_form/text_field.rb +2 -2
- data/lib/hexapdf/type/acro_form/variable_text_field.rb +17 -9
- data/lib/hexapdf/type/acro_form.rb +1 -1
- data/lib/hexapdf/type/action.rb +1 -1
- data/lib/hexapdf/type/actions/go_to.rb +1 -1
- data/lib/hexapdf/type/actions/go_to_r.rb +1 -1
- data/lib/hexapdf/type/actions/launch.rb +1 -1
- data/lib/hexapdf/type/actions/uri.rb +1 -1
- data/lib/hexapdf/type/actions.rb +1 -1
- data/lib/hexapdf/type/annotation.rb +1 -1
- data/lib/hexapdf/type/annotations/link.rb +1 -1
- data/lib/hexapdf/type/annotations/markup_annotation.rb +1 -1
- data/lib/hexapdf/type/annotations/text.rb +1 -1
- data/lib/hexapdf/type/annotations/widget.rb +2 -2
- data/lib/hexapdf/type/annotations.rb +1 -1
- data/lib/hexapdf/type/catalog.rb +1 -1
- data/lib/hexapdf/type/cid_font.rb +1 -1
- data/lib/hexapdf/type/embedded_file.rb +1 -1
- data/lib/hexapdf/type/file_specification.rb +1 -1
- data/lib/hexapdf/type/font.rb +1 -1
- data/lib/hexapdf/type/font_descriptor.rb +1 -1
- data/lib/hexapdf/type/font_simple.rb +1 -1
- data/lib/hexapdf/type/font_true_type.rb +1 -1
- data/lib/hexapdf/type/font_type0.rb +1 -1
- data/lib/hexapdf/type/font_type1.rb +1 -1
- data/lib/hexapdf/type/font_type3.rb +1 -1
- data/lib/hexapdf/type/form.rb +1 -1
- data/lib/hexapdf/type/graphics_state_parameter.rb +1 -1
- data/lib/hexapdf/type/icon_fit.rb +1 -1
- data/lib/hexapdf/type/image.rb +1 -1
- data/lib/hexapdf/type/info.rb +1 -1
- data/lib/hexapdf/type/names.rb +1 -1
- data/lib/hexapdf/type/object_stream.rb +1 -1
- data/lib/hexapdf/type/page.rb +15 -1
- data/lib/hexapdf/type/page_tree_node.rb +1 -1
- data/lib/hexapdf/type/resources.rb +1 -1
- data/lib/hexapdf/type/trailer.rb +1 -1
- data/lib/hexapdf/type/viewer_preferences.rb +1 -1
- data/lib/hexapdf/type/xref_stream.rb +1 -1
- data/lib/hexapdf/type.rb +1 -1
- data/lib/hexapdf/utils/bit_field.rb +1 -1
- data/lib/hexapdf/utils/bit_stream.rb +1 -1
- data/lib/hexapdf/utils/graphics_helpers.rb +1 -1
- data/lib/hexapdf/utils/lru_cache.rb +1 -1
- data/lib/hexapdf/utils/math_helpers.rb +1 -1
- data/lib/hexapdf/utils/object_hash.rb +1 -1
- data/lib/hexapdf/utils/pdf_doc_encoding.rb +1 -1
- data/lib/hexapdf/utils/sorted_tree_node.rb +1 -1
- data/lib/hexapdf/version.rb +2 -2
- data/lib/hexapdf/writer.rb +1 -1
- data/lib/hexapdf/xref_section.rb +1 -1
- data/lib/hexapdf.rb +1 -1
- metadata +5 -264
- data/CHANGELOG.md +0 -954
- data/LICENSE +0 -29
- data/README.md +0 -120
- data/Rakefile +0 -108
- data/agpl-3.0.txt +0 -661
- data/examples/001-hello_world.rb +0 -16
- data/examples/002-graphics.rb +0 -275
- data/examples/003-arcs.rb +0 -50
- data/examples/004-optimizing.rb +0 -23
- data/examples/005-merging.rb +0 -27
- data/examples/006-standard_pdf_fonts.rb +0 -73
- data/examples/007-truetype.rb +0 -42
- data/examples/008-show_char_bboxes.rb +0 -55
- data/examples/009-text_layouter_alignment.rb +0 -47
- data/examples/010-text_layouter_inline_boxes.rb +0 -64
- data/examples/011-text_layouter_line_wrapping.rb +0 -57
- data/examples/012-text_layouter_styling.rb +0 -122
- data/examples/013-text_layouter_shapes.rb +0 -176
- data/examples/014-text_in_polygon.rb +0 -60
- data/examples/015-boxes.rb +0 -76
- data/examples/016-frame_automatic_box_placement.rb +0 -90
- data/examples/017-frame_text_flow.rb +0 -60
- data/examples/018-composer.rb +0 -44
- data/examples/019-acro_form.rb +0 -88
- data/examples/emoji-smile.png +0 -0
- data/examples/emoji-wink.png +0 -0
- data/examples/machupicchu.jpg +0 -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/images/ycck.jpg +0 -0
- data/test/data/minimal.pdf +0 -44
- data/test/data/standard-security-handler/README +0 -9
- data/test/data/standard-security-handler/bothpwd-aes-128bit-V4.pdf +0 -44
- data/test/data/standard-security-handler/bothpwd-aes-256bit-V5.pdf +0 -0
- data/test/data/standard-security-handler/bothpwd-arc4-128bit-V2.pdf +0 -43
- data/test/data/standard-security-handler/bothpwd-arc4-128bit-V4.pdf +0 -43
- data/test/data/standard-security-handler/bothpwd-arc4-40bit-V1.pdf +0 -0
- data/test/data/standard-security-handler/nopwd-aes-128bit-V4.pdf +0 -43
- data/test/data/standard-security-handler/nopwd-aes-256bit-V5.pdf +0 -0
- data/test/data/standard-security-handler/nopwd-arc4-128bit-V2.pdf +0 -43
- data/test/data/standard-security-handler/nopwd-arc4-128bit-V4.pdf +0 -43
- data/test/data/standard-security-handler/nopwd-arc4-40bit-V1.pdf +0 -43
- data/test/data/standard-security-handler/ownerpwd-aes-128bit-V4.pdf +0 -0
- data/test/data/standard-security-handler/ownerpwd-aes-256bit-V5.pdf +0 -43
- data/test/data/standard-security-handler/ownerpwd-arc4-128bit-V2.pdf +0 -43
- data/test/data/standard-security-handler/ownerpwd-arc4-128bit-V4.pdf +0 -43
- data/test/data/standard-security-handler/ownerpwd-arc4-40bit-V1.pdf +0 -43
- data/test/data/standard-security-handler/userpwd-aes-128bit-V4.pdf +0 -43
- data/test/data/standard-security-handler/userpwd-aes-256bit-V5.pdf +0 -43
- 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 +0 -43
- data/test/hexapdf/common_tokenizer_tests.rb +0 -236
- data/test/hexapdf/content/common.rb +0 -39
- data/test/hexapdf/content/graphic_object/test_arc.rb +0 -93
- data/test/hexapdf/content/graphic_object/test_endpoint_arc.rb +0 -90
- data/test/hexapdf/content/graphic_object/test_geom2d.rb +0 -79
- data/test/hexapdf/content/graphic_object/test_solid_arc.rb +0 -86
- data/test/hexapdf/content/test_canvas.rb +0 -1216
- data/test/hexapdf/content/test_color_space.rb +0 -164
- data/test/hexapdf/content/test_graphics_state.rb +0 -151
- data/test/hexapdf/content/test_operator.rb +0 -619
- data/test/hexapdf/content/test_parser.rb +0 -99
- data/test/hexapdf/content/test_processor.rb +0 -163
- data/test/hexapdf/content/test_transformation_matrix.rb +0 -64
- data/test/hexapdf/document/test_files.rb +0 -72
- data/test/hexapdf/document/test_fonts.rb +0 -60
- data/test/hexapdf/document/test_images.rb +0 -72
- data/test/hexapdf/document/test_pages.rb +0 -130
- data/test/hexapdf/encryption/common.rb +0 -87
- data/test/hexapdf/encryption/test_aes.rb +0 -129
- data/test/hexapdf/encryption/test_arc4.rb +0 -39
- data/test/hexapdf/encryption/test_fast_aes.rb +0 -17
- data/test/hexapdf/encryption/test_fast_arc4.rb +0 -12
- data/test/hexapdf/encryption/test_identity.rb +0 -21
- data/test/hexapdf/encryption/test_ruby_aes.rb +0 -23
- data/test/hexapdf/encryption/test_ruby_arc4.rb +0 -20
- data/test/hexapdf/encryption/test_security_handler.rb +0 -380
- data/test/hexapdf/encryption/test_standard_security_handler.rb +0 -322
- data/test/hexapdf/filter/common.rb +0 -53
- data/test/hexapdf/filter/test_ascii85_decode.rb +0 -59
- data/test/hexapdf/filter/test_ascii_hex_decode.rb +0 -38
- data/test/hexapdf/filter/test_crypt.rb +0 -21
- data/test/hexapdf/filter/test_encryption.rb +0 -24
- data/test/hexapdf/filter/test_flate_decode.rb +0 -44
- data/test/hexapdf/filter/test_lzw_decode.rb +0 -52
- data/test/hexapdf/filter/test_predictor.rb +0 -219
- data/test/hexapdf/filter/test_run_length_decode.rb +0 -32
- data/test/hexapdf/font/cmap/test_parser.rb +0 -102
- data/test/hexapdf/font/cmap/test_writer.rb +0 -66
- data/test/hexapdf/font/encoding/test_base.rb +0 -45
- data/test/hexapdf/font/encoding/test_difference_encoding.rb +0 -29
- data/test/hexapdf/font/encoding/test_glyph_list.rb +0 -59
- data/test/hexapdf/font/encoding/test_zapf_dingbats_encoding.rb +0 -16
- data/test/hexapdf/font/test_cmap.rb +0 -104
- data/test/hexapdf/font/test_encoding.rb +0 -27
- data/test/hexapdf/font/test_invalid_glyph.rb +0 -34
- data/test/hexapdf/font/test_true_type_wrapper.rb +0 -186
- data/test/hexapdf/font/test_type1_wrapper.rb +0 -107
- data/test/hexapdf/font/true_type/common.rb +0 -17
- data/test/hexapdf/font/true_type/table/common.rb +0 -27
- data/test/hexapdf/font/true_type/table/test_cmap.rb +0 -47
- data/test/hexapdf/font/true_type/table/test_cmap_subtable.rb +0 -141
- data/test/hexapdf/font/true_type/table/test_directory.rb +0 -30
- data/test/hexapdf/font/true_type/table/test_glyf.rb +0 -58
- data/test/hexapdf/font/true_type/table/test_head.rb +0 -56
- data/test/hexapdf/font/true_type/table/test_hhea.rb +0 -26
- data/test/hexapdf/font/true_type/table/test_hmtx.rb +0 -30
- data/test/hexapdf/font/true_type/table/test_kern.rb +0 -61
- data/test/hexapdf/font/true_type/table/test_loca.rb +0 -33
- data/test/hexapdf/font/true_type/table/test_maxp.rb +0 -50
- data/test/hexapdf/font/true_type/table/test_name.rb +0 -76
- data/test/hexapdf/font/true_type/table/test_os2.rb +0 -55
- data/test/hexapdf/font/true_type/table/test_post.rb +0 -78
- data/test/hexapdf/font/true_type/test_builder.rb +0 -42
- data/test/hexapdf/font/true_type/test_font.rb +0 -116
- data/test/hexapdf/font/true_type/test_optimizer.rb +0 -26
- data/test/hexapdf/font/true_type/test_subsetter.rb +0 -73
- data/test/hexapdf/font/true_type/test_table.rb +0 -48
- data/test/hexapdf/font/type1/common.rb +0 -6
- data/test/hexapdf/font/type1/test_afm_parser.rb +0 -65
- data/test/hexapdf/font/type1/test_font.rb +0 -104
- data/test/hexapdf/font/type1/test_font_metrics.rb +0 -22
- data/test/hexapdf/font/type1/test_pfb_parser.rb +0 -37
- data/test/hexapdf/font_loader/test_from_configuration.rb +0 -43
- data/test/hexapdf/font_loader/test_from_file.rb +0 -36
- data/test/hexapdf/font_loader/test_standard14.rb +0 -33
- data/test/hexapdf/image_loader/test_jpeg.rb +0 -93
- data/test/hexapdf/image_loader/test_pdf.rb +0 -47
- data/test/hexapdf/image_loader/test_png.rb +0 -259
- data/test/hexapdf/layout/test_box.rb +0 -152
- data/test/hexapdf/layout/test_frame.rb +0 -350
- data/test/hexapdf/layout/test_image_box.rb +0 -73
- data/test/hexapdf/layout/test_inline_box.rb +0 -71
- data/test/hexapdf/layout/test_line.rb +0 -206
- data/test/hexapdf/layout/test_style.rb +0 -779
- data/test/hexapdf/layout/test_text_box.rb +0 -140
- data/test/hexapdf/layout/test_text_fragment.rb +0 -375
- data/test/hexapdf/layout/test_text_layouter.rb +0 -758
- data/test/hexapdf/layout/test_text_shaper.rb +0 -62
- data/test/hexapdf/layout/test_width_from_polygon.rb +0 -108
- data/test/hexapdf/task/test_dereference.rb +0 -51
- data/test/hexapdf/task/test_optimize.rb +0 -162
- data/test/hexapdf/test_composer.rb +0 -258
- data/test/hexapdf/test_configuration.rb +0 -93
- data/test/hexapdf/test_data_dir.rb +0 -32
- data/test/hexapdf/test_dictionary.rb +0 -340
- data/test/hexapdf/test_dictionary_fields.rb +0 -245
- data/test/hexapdf/test_document.rb +0 -641
- data/test/hexapdf/test_filter.rb +0 -100
- data/test/hexapdf/test_importer.rb +0 -106
- data/test/hexapdf/test_object.rb +0 -258
- data/test/hexapdf/test_parser.rb +0 -637
- data/test/hexapdf/test_pdf_array.rb +0 -169
- data/test/hexapdf/test_rectangle.rb +0 -73
- data/test/hexapdf/test_reference.rb +0 -50
- data/test/hexapdf/test_revision.rb +0 -188
- data/test/hexapdf/test_revisions.rb +0 -196
- data/test/hexapdf/test_serializer.rb +0 -195
- data/test/hexapdf/test_stream.rb +0 -274
- data/test/hexapdf/test_tokenizer.rb +0 -80
- data/test/hexapdf/test_type.rb +0 -18
- data/test/hexapdf/test_writer.rb +0 -140
- data/test/hexapdf/test_xref_section.rb +0 -61
- data/test/hexapdf/type/acro_form/test_appearance_generator.rb +0 -794
- data/test/hexapdf/type/acro_form/test_button_field.rb +0 -302
- data/test/hexapdf/type/acro_form/test_choice_field.rb +0 -220
- data/test/hexapdf/type/acro_form/test_field.rb +0 -247
- data/test/hexapdf/type/acro_form/test_form.rb +0 -353
- data/test/hexapdf/type/acro_form/test_signature_field.rb +0 -38
- data/test/hexapdf/type/acro_form/test_text_field.rb +0 -195
- data/test/hexapdf/type/acro_form/test_variable_text_field.rb +0 -77
- data/test/hexapdf/type/actions/test_launch.rb +0 -24
- data/test/hexapdf/type/actions/test_uri.rb +0 -23
- data/test/hexapdf/type/annotations/test_markup_annotation.rb +0 -22
- data/test/hexapdf/type/annotations/test_text.rb +0 -34
- data/test/hexapdf/type/annotations/test_widget.rb +0 -225
- data/test/hexapdf/type/test_annotation.rb +0 -97
- data/test/hexapdf/type/test_catalog.rb +0 -48
- data/test/hexapdf/type/test_cid_font.rb +0 -61
- data/test/hexapdf/type/test_file_specification.rb +0 -141
- data/test/hexapdf/type/test_font.rb +0 -67
- data/test/hexapdf/type/test_font_descriptor.rb +0 -61
- data/test/hexapdf/type/test_font_simple.rb +0 -176
- data/test/hexapdf/type/test_font_true_type.rb +0 -31
- data/test/hexapdf/type/test_font_type0.rb +0 -120
- data/test/hexapdf/type/test_font_type1.rb +0 -142
- data/test/hexapdf/type/test_font_type3.rb +0 -26
- data/test/hexapdf/type/test_form.rb +0 -120
- data/test/hexapdf/type/test_image.rb +0 -261
- data/test/hexapdf/type/test_info.rb +0 -9
- data/test/hexapdf/type/test_object_stream.rb +0 -117
- data/test/hexapdf/type/test_page.rb +0 -587
- data/test/hexapdf/type/test_page_tree_node.rb +0 -315
- data/test/hexapdf/type/test_resources.rb +0 -209
- data/test/hexapdf/type/test_trailer.rb +0 -116
- data/test/hexapdf/type/test_xref_stream.rb +0 -143
- data/test/hexapdf/utils/test_bit_field.rb +0 -63
- data/test/hexapdf/utils/test_bit_stream.rb +0 -69
- data/test/hexapdf/utils/test_graphics_helpers.rb +0 -37
- data/test/hexapdf/utils/test_lru_cache.rb +0 -22
- data/test/hexapdf/utils/test_object_hash.rb +0 -120
- data/test/hexapdf/utils/test_pdf_doc_encoding.rb +0 -18
- data/test/hexapdf/utils/test_sorted_tree_node.rb +0 -239
- data/test/test_helper.rb +0 -58
@@ -1,62 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative '../font/true_type/table/common'
|
5
|
-
require 'hexapdf/document'
|
6
|
-
require 'hexapdf/font/true_type_wrapper'
|
7
|
-
require 'hexapdf/layout/text_shaper'
|
8
|
-
|
9
|
-
using HexaPDF::Layout::NumericRefinements
|
10
|
-
|
11
|
-
describe HexaPDF::Layout::TextShaper do
|
12
|
-
before do
|
13
|
-
@doc = HexaPDF::Document.new
|
14
|
-
@shaper = HexaPDF::Layout::TextShaper.new
|
15
|
-
end
|
16
|
-
|
17
|
-
def setup_fragment(items, **options)
|
18
|
-
style = HexaPDF::Layout::Style.new(font: @font, font_size: 20, font_features: options)
|
19
|
-
HexaPDF::Layout::TextFragment.new(items, style)
|
20
|
-
end
|
21
|
-
|
22
|
-
describe "Type1 font features" do
|
23
|
-
before do
|
24
|
-
@font = @doc.fonts.add("Times", custom_encoding: true)
|
25
|
-
end
|
26
|
-
|
27
|
-
it "handles ligatures" do
|
28
|
-
fragment = setup_fragment(@font.decode_utf8('fish fish fi').insert(1, 100).
|
29
|
-
insert(0, 100), liga: true)
|
30
|
-
@shaper.shape_text(fragment)
|
31
|
-
assert_equal([100, :fi, :s, :h, :space, :fi, :s, :h, :space, :fi],
|
32
|
-
fragment.items.map {|item| item.kind_of?(Numeric) ? item : item.id })
|
33
|
-
end
|
34
|
-
|
35
|
-
it "handles kerning" do
|
36
|
-
fragment = setup_fragment(@font.decode_utf8('fish fish wow').insert(1, 100), kern: true)
|
37
|
-
@shaper.shape_text(fragment)
|
38
|
-
assert_equal([:f, 100, :i, :s, :h, :space, :f, 20, :i, :s, :h, :space, :w, 10, :o, 25, :w],
|
39
|
-
fragment.items.map {|item| item.kind_of?(Numeric) ? item : item.id })
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
describe "TrueType font features" do
|
44
|
-
before do
|
45
|
-
font_file = File.join(TEST_DATA_DIR, "fonts", "Ubuntu-Title.ttf")
|
46
|
-
@wrapped_font = HexaPDF::Font::TrueType::Font.new(File.open(font_file))
|
47
|
-
@font = HexaPDF::Font::TrueTypeWrapper.new(@doc, @wrapped_font)
|
48
|
-
end
|
49
|
-
|
50
|
-
it "handles kerning" do
|
51
|
-
data = [0, 1].pack('n2') << \
|
52
|
-
[0, 6 + 8 + 12, 0x1].pack('n3') << \
|
53
|
-
[2, 0, 0, 0, 53, 80, -20, 80, 81, -10].pack('n4n2s>n2s>')
|
54
|
-
table = create_table(:Kern, data, standalone: true)
|
55
|
-
@wrapped_font.instance_eval { @tables[:kern] = table }
|
56
|
-
fragment = setup_fragment(@font.decode_utf8('Top Top').insert(1, 100), kern: true)
|
57
|
-
@shaper.shape_text(fragment)
|
58
|
-
assert_equal([53, [100], 80, [10], 81, 3, 53, [20], 80, [10], 81],
|
59
|
-
fragment.items.map {|item| item.kind_of?(Numeric) ? [item] : item.id })
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
@@ -1,108 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/layout/width_from_polygon'
|
5
|
-
|
6
|
-
describe HexaPDF::Layout::WidthFromPolygon do
|
7
|
-
def create_width_spec(polygon, offset = 0)
|
8
|
-
HexaPDF::Layout::WidthFromPolygon.new(polygon, offset)
|
9
|
-
end
|
10
|
-
|
11
|
-
it "respects the offset" do
|
12
|
-
ws = create_width_spec(Geom2D::Polygon([0, 0], [0, 10], [10, 5]), 5)
|
13
|
-
assert_equal([0, 8], ws.call(0, 1))
|
14
|
-
end
|
15
|
-
|
16
|
-
it "works in the case bottom and top line are the same" do
|
17
|
-
ws = create_width_spec(Geom2D::Polygon([0, 0], [0, 10], [10, 5]))
|
18
|
-
assert_equal([0, 0], ws.call(0, 0))
|
19
|
-
assert_equal([0, 0], ws.call(5, 0))
|
20
|
-
end
|
21
|
-
|
22
|
-
it "works when the first segment has not the minimal x-value" do
|
23
|
-
ws = create_width_spec(Geom2D::Polygon([10, 10], [10, 0], [0, 0], [5, 10]))
|
24
|
-
assert_equal([5, 5], ws.call(0, 1))
|
25
|
-
assert_equal([2.5, 7.5], ws.call(5, 1))
|
26
|
-
end
|
27
|
-
|
28
|
-
it "works when the polygon is specified in counterclockwise order" do
|
29
|
-
ws = create_width_spec(Geom2D::Polygon([10, 10], [5, 10], [0, 0], [10, 0]))
|
30
|
-
assert_equal([5, 5], ws.call(0, 1))
|
31
|
-
assert_equal([2.5, 7.5], ws.call(5, 1))
|
32
|
-
end
|
33
|
-
|
34
|
-
it "works if some segments only cross the top line" do
|
35
|
-
ws = create_width_spec(Geom2D::Polygon([0, 0], [0, 10], [2, 11], [4, 9], [6, 11], [10, 10],
|
36
|
-
[10, 0]))
|
37
|
-
assert_equal([0, 3, 2, 5], ws.call(1, 2))
|
38
|
-
end
|
39
|
-
|
40
|
-
it "works if some segments only cross the bottom line" do
|
41
|
-
ws = create_width_spec(Geom2D::Polygon([0, 0], [0, 10], [2, 4], [4, 6], [6, 4], [10, 10],
|
42
|
-
[10, 0]))
|
43
|
-
assert_equal([0, 1, 7, 2], ws.call(3, 2))
|
44
|
-
end
|
45
|
-
|
46
|
-
it "works if some non-horizontal segments don't cross the top/bottom line at all" do
|
47
|
-
ws = create_width_spec(Geom2D::Polygon([0, 0], [0, 10], [2, 4], [4, 6.5], [6, 6], [10, 10],
|
48
|
-
[10, 0]))
|
49
|
-
assert_equal([0, 1, 6, 3], ws.call(3, 2))
|
50
|
-
end
|
51
|
-
|
52
|
-
it "works if there is no available space" do
|
53
|
-
ws = create_width_spec(Geom2D::Polygon([0, 0], [0, 10], [5, 9], [10, 10], [10, 0]))
|
54
|
-
assert_equal([0, 0], ws.call(0, 2))
|
55
|
-
end
|
56
|
-
|
57
|
-
it "works if the first processed segment doesn't cross both lines" do
|
58
|
-
ws = create_width_spec(Geom2D::Polygon([0, 5], [0, 0], [10, 0], [10, 10], [5, 10], [5, 5]))
|
59
|
-
assert_equal([5, 5], ws.call(4, 2))
|
60
|
-
end
|
61
|
-
|
62
|
-
describe "multiple polygons" do
|
63
|
-
it "rectangle in rectangle" do
|
64
|
-
ws = create_width_spec(Geom2D::PolygonSet(Geom2D::Polygon([0, 0], [0, 10], [10, 10], [10, 0]),
|
65
|
-
Geom2D::Polygon([2, 2], [2, 8], [8, 8], [8, 2])))
|
66
|
-
assert_equal([0, 2, 6, 2], ws.call(1, 8))
|
67
|
-
assert_equal([0, 10], ws.call(0, 2))
|
68
|
-
assert_equal([0, 2, 6, 2], ws.call(2, 1))
|
69
|
-
assert_equal([0, 2, 6, 2], ws.call(7, 2))
|
70
|
-
end
|
71
|
-
|
72
|
-
it "rectangle in rectangle with reverse direction" do
|
73
|
-
ws = create_width_spec(Geom2D::PolygonSet(Geom2D::Polygon([0, 0], [0, 10], [10, 10], [10, 0]),
|
74
|
-
Geom2D::Polygon([2, 8], [2, 2], [8, 2], [8, 8])))
|
75
|
-
assert_equal([0, 2, 6, 2], ws.call(7, 2))
|
76
|
-
assert_equal([0, 2, 6, 2], ws.call(1, 8))
|
77
|
-
assert_equal([0, 10], ws.call(0, 2))
|
78
|
-
assert_equal([0, 2, 6, 2], ws.call(2, 1))
|
79
|
-
end
|
80
|
-
|
81
|
-
it "first segment of inner polygon is between the lines, polygon crosses both lines" do
|
82
|
-
ws = create_width_spec(Geom2D::PolygonSet(Geom2D::Polygon([0, 0], [0, 10], [10, 10], [10, 0]),
|
83
|
-
Geom2D::Polygon([2, 4], [2, 6], [8, 8], [8, 2])))
|
84
|
-
assert_equal([0, 10], ws.call(0, 2))
|
85
|
-
assert_equal([0, 5, 3, 2], ws.call(2, 1).map {|f| f.round(5) })
|
86
|
-
assert_equal([0, 2, 6, 2], ws.call(3, 4))
|
87
|
-
end
|
88
|
-
|
89
|
-
it "first segment of inner polygon is between the lines, polygon crosses one line" do
|
90
|
-
ws = create_width_spec(Geom2D::PolygonSet(Geom2D::Polygon([0, 0], [0, 10], [10, 10], [10, 0]),
|
91
|
-
Geom2D::Polygon([2, 4], [4, 6], [8, 2])))
|
92
|
-
assert_equal([0, 2, 5, 3], ws.call(3, 4))
|
93
|
-
end
|
94
|
-
|
95
|
-
it "polygon is partly between the lines, maximum between the lines" do
|
96
|
-
ws = create_width_spec(Geom2D::PolygonSet(Geom2D::Polygon([0, 0], [0, 10], [10, 10], [10, 0]),
|
97
|
-
Geom2D::Polygon([2, 4], [2, 6], [8, 8], [9, 5],
|
98
|
-
[8, 2])))
|
99
|
-
assert_equal([0, 2, 7, 1], ws.call(3, 4))
|
100
|
-
end
|
101
|
-
|
102
|
-
it "polygon is partly between the lines, maximum is at an line crossing" do
|
103
|
-
ws = create_width_spec(Geom2D::PolygonSet(Geom2D::Polygon([0, 0], [0, 10], [10, 10], [10, 0]),
|
104
|
-
Geom2D::Polygon([2, 4], [8, 8], [5, 5], [8, 2])))
|
105
|
-
assert_equal([0, 2, 5, 3], ws.call(3, 4))
|
106
|
-
end
|
107
|
-
end
|
108
|
-
end
|
@@ -1,51 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/document'
|
5
|
-
require 'hexapdf/task/dereference'
|
6
|
-
|
7
|
-
describe HexaPDF::Task::Dereference do
|
8
|
-
before do
|
9
|
-
@doc = HexaPDF::Document.new(io: StringIO.new(MINIMAL_PDF))
|
10
|
-
end
|
11
|
-
|
12
|
-
it "dereferences all references to objects" do
|
13
|
-
obj = @doc.add(:test)
|
14
|
-
len = @doc.add(5)
|
15
|
-
str = @doc.add(@doc.wrap({Length: len}, stream: ''))
|
16
|
-
@doc.trailer[:Test] = str
|
17
|
-
pages = @doc.wrap({Type: :Pages})
|
18
|
-
pages.add_page(@doc.wrap({Type: :Page}))
|
19
|
-
@doc.trailer[:Test2] = pages
|
20
|
-
@doc.trailer[:InvalidRef] = HexaPDF::Reference.new(5000, 2)
|
21
|
-
|
22
|
-
checker = lambda do |val, done = {}|
|
23
|
-
case val
|
24
|
-
when Array then val.all? {|v| checker.call(v, done) }
|
25
|
-
when Hash then val.all? {|_, v| checker.call(v, done) }
|
26
|
-
when HexaPDF::Reference
|
27
|
-
false
|
28
|
-
when HexaPDF::Object
|
29
|
-
if done.key?(val)
|
30
|
-
true
|
31
|
-
else
|
32
|
-
done[val] = true
|
33
|
-
checker.call(val.value, done)
|
34
|
-
end
|
35
|
-
else
|
36
|
-
true
|
37
|
-
end
|
38
|
-
end
|
39
|
-
refute(checker.call(@doc.trailer))
|
40
|
-
assert_equal([obj, len], @doc.task(:dereference))
|
41
|
-
assert(checker.call(@doc.trailer))
|
42
|
-
assert_equal([obj, len], @doc.task(:dereference))
|
43
|
-
assert(checker.call(@doc.trailer))
|
44
|
-
end
|
45
|
-
|
46
|
-
it "dereferences only a single object" do
|
47
|
-
assert(@doc.object(5).value[:Font][:F1].kind_of?(HexaPDF::Reference))
|
48
|
-
assert_nil(@doc.task(:dereference, object: @doc.object(5)))
|
49
|
-
refute(@doc.object(5).value[:Font][:F1].kind_of?(HexaPDF::Reference))
|
50
|
-
end
|
51
|
-
end
|
@@ -1,162 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/document'
|
5
|
-
require 'hexapdf/task/optimize'
|
6
|
-
|
7
|
-
describe HexaPDF::Task::Optimize do
|
8
|
-
class TestType < HexaPDF::Dictionary
|
9
|
-
|
10
|
-
define_type :Test
|
11
|
-
define_field :Optional, type: Symbol, default: :Optional
|
12
|
-
|
13
|
-
end
|
14
|
-
|
15
|
-
before do
|
16
|
-
HexaPDF::GlobalConfiguration['object.type_map'][:Test] = TestType
|
17
|
-
@doc = HexaPDF::Document.new
|
18
|
-
@obj1 = @doc.add({Type: :Test, Optional: :Optional})
|
19
|
-
@doc.trailer[:Test] = @doc.wrap(@obj1)
|
20
|
-
@doc.revisions.add
|
21
|
-
@obj2 = @doc.add({Type: :UsedEntry})
|
22
|
-
@obj3 = @doc.add({Unused: @obj2})
|
23
|
-
@obj4 = @doc.add({Test: :Test})
|
24
|
-
@obj1[:Test] = @doc.wrap(@obj4, type: TestType)
|
25
|
-
end
|
26
|
-
|
27
|
-
after do
|
28
|
-
HexaPDF::GlobalConfiguration['object.type_map'].delete(:Test)
|
29
|
-
end
|
30
|
-
|
31
|
-
def assert_objstms_generated
|
32
|
-
assert(@doc.revisions.all? {|rev| rev.any? {|obj| obj.type == :ObjStm } })
|
33
|
-
assert(@doc.revisions.all? {|rev| rev.any? {|obj| obj.type == :XRef } })
|
34
|
-
end
|
35
|
-
|
36
|
-
def assert_xrefstms_generated
|
37
|
-
assert(@doc.revisions.all? {|rev| rev.find_all {|obj| obj.type == :XRef }.size == 1 })
|
38
|
-
end
|
39
|
-
|
40
|
-
def assert_no_objstms
|
41
|
-
assert(@doc.each(only_current: false).all? {|obj| obj.type != :ObjStm })
|
42
|
-
end
|
43
|
-
|
44
|
-
def assert_no_xrefstms
|
45
|
-
assert(@doc.each(only_current: false).all? {|obj| obj.type != :XRef })
|
46
|
-
end
|
47
|
-
|
48
|
-
def assert_default_deleted
|
49
|
-
refute(@doc.object(1).key?(:Optional))
|
50
|
-
end
|
51
|
-
|
52
|
-
describe "compact" do
|
53
|
-
it "compacts the document" do
|
54
|
-
@doc.task(:optimize, compact: true)
|
55
|
-
assert_equal(1, @doc.revisions.size)
|
56
|
-
assert_equal(2, @doc.each(only_current: false).to_a.size)
|
57
|
-
refute_equal(@obj2, @doc.object(@obj2))
|
58
|
-
refute_equal(@obj3, @doc.object(@obj3))
|
59
|
-
assert_default_deleted
|
60
|
-
assert_equal(2, @obj4.oid)
|
61
|
-
assert_equal(@obj1[:Test], @obj4)
|
62
|
-
end
|
63
|
-
|
64
|
-
it "compacts and generates object streams" do
|
65
|
-
@doc.task(:optimize, compact: true, object_streams: :generate)
|
66
|
-
assert_objstms_generated
|
67
|
-
assert_default_deleted
|
68
|
-
end
|
69
|
-
|
70
|
-
it "compacts and deletes object streams" do
|
71
|
-
@doc.add({Type: :ObjStm})
|
72
|
-
@doc.task(:optimize, compact: true, object_streams: :delete)
|
73
|
-
assert_no_objstms
|
74
|
-
assert_default_deleted
|
75
|
-
end
|
76
|
-
|
77
|
-
it "compacts and generates xref streams" do
|
78
|
-
@doc.task(:optimize, compact: true, xref_streams: :generate)
|
79
|
-
assert_xrefstms_generated
|
80
|
-
assert_default_deleted
|
81
|
-
end
|
82
|
-
|
83
|
-
it "compacts and deletes xref streams" do
|
84
|
-
@doc.add({Type: :XRef}, revision: 0)
|
85
|
-
@doc.add({Type: :XRef}, revision: 1)
|
86
|
-
@doc.task(:optimize, compact: true, xref_streams: :delete)
|
87
|
-
assert_no_xrefstms
|
88
|
-
assert_default_deleted
|
89
|
-
end
|
90
|
-
end
|
91
|
-
|
92
|
-
describe "object_streams" do
|
93
|
-
def reload_document_with_objstm_from_io
|
94
|
-
io = StringIO.new
|
95
|
-
objstm = @doc.add({Type: :ObjStm})
|
96
|
-
@doc.add({Type: :XRef})
|
97
|
-
objstm.add_object(@doc.add({Type: :Test}))
|
98
|
-
@doc.write(io)
|
99
|
-
io.rewind
|
100
|
-
@doc = HexaPDF::Document.new(io: io)
|
101
|
-
end
|
102
|
-
|
103
|
-
it "generates object streams" do
|
104
|
-
210.times { @doc.add(5) }
|
105
|
-
objstm = @doc.add({Type: :ObjStm})
|
106
|
-
reload_document_with_objstm_from_io
|
107
|
-
@doc.task(:optimize, object_streams: :generate)
|
108
|
-
assert_objstms_generated
|
109
|
-
assert_default_deleted
|
110
|
-
assert_nil(@doc.object(objstm).value)
|
111
|
-
assert_equal(2, @doc.revisions.current.find_all {|obj| obj.type == :ObjStm }.size)
|
112
|
-
end
|
113
|
-
|
114
|
-
it "deletes object and xref streams" do
|
115
|
-
reload_document_with_objstm_from_io
|
116
|
-
@doc.task(:optimize, object_streams: :delete, xref_streams: :delete)
|
117
|
-
assert_no_objstms
|
118
|
-
assert_no_xrefstms
|
119
|
-
assert_default_deleted
|
120
|
-
end
|
121
|
-
|
122
|
-
it "deletes object and generates xref streams" do
|
123
|
-
@doc.add({Type: :ObjStm})
|
124
|
-
xref = @doc.add({Type: :XRef})
|
125
|
-
@doc.task(:optimize, object_streams: :delete, xref_streams: :generate)
|
126
|
-
assert_no_objstms
|
127
|
-
assert_xrefstms_generated
|
128
|
-
assert_equal([xref], @doc.revisions.current.find_all {|obj| obj.type == :XRef })
|
129
|
-
assert_default_deleted
|
130
|
-
end
|
131
|
-
end
|
132
|
-
|
133
|
-
describe "xref_streams" do
|
134
|
-
it "generates xref streams" do
|
135
|
-
@doc.task(:optimize, xref_streams: :generate)
|
136
|
-
assert_xrefstms_generated
|
137
|
-
assert_default_deleted
|
138
|
-
end
|
139
|
-
|
140
|
-
it "reuses an xref stream in generatation mode" do
|
141
|
-
@doc.add({Type: :XRef})
|
142
|
-
@doc.task(:optimize, xref_streams: :generate)
|
143
|
-
assert_xrefstms_generated
|
144
|
-
end
|
145
|
-
|
146
|
-
it "deletes xref streams" do
|
147
|
-
@doc.add({Type: :XRef})
|
148
|
-
@doc.task(:optimize, xref_streams: :delete)
|
149
|
-
assert_no_xrefstms
|
150
|
-
assert_default_deleted
|
151
|
-
end
|
152
|
-
end
|
153
|
-
|
154
|
-
describe "compress_pages" do
|
155
|
-
it "compresses pages streams" do
|
156
|
-
page = @doc.pages.add
|
157
|
-
page.contents = " 10 10 m q Q BI /Name 5 ID dataEI "
|
158
|
-
@doc.task(:optimize, compress_pages: true)
|
159
|
-
assert_equal("10 10 m\nq\nQ\nBI\n/Name 5 ID\ndataEI\n", page.contents)
|
160
|
-
end
|
161
|
-
end
|
162
|
-
end
|
@@ -1,258 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative 'content/common'
|
5
|
-
require 'hexapdf/document'
|
6
|
-
require 'hexapdf/composer'
|
7
|
-
require 'stringio'
|
8
|
-
|
9
|
-
describe HexaPDF::Composer do
|
10
|
-
before do
|
11
|
-
@composer = HexaPDF::Composer.new
|
12
|
-
end
|
13
|
-
|
14
|
-
describe "initialize" do
|
15
|
-
it "creates a composer object with default values" do
|
16
|
-
assert_kind_of(HexaPDF::Document, @composer.document)
|
17
|
-
assert_kind_of(HexaPDF::Type::Page, @composer.page)
|
18
|
-
assert_equal(36, @composer.frame.left)
|
19
|
-
assert_equal(36, @composer.frame.bottom)
|
20
|
-
assert_equal(523, @composer.frame.width)
|
21
|
-
assert_equal(770, @composer.frame.height)
|
22
|
-
assert_equal("Times", @composer.base_style.font)
|
23
|
-
end
|
24
|
-
|
25
|
-
it "allows the customization of the page size" do
|
26
|
-
composer = HexaPDF::Composer.new(page_size: [0, 0, 100, 100])
|
27
|
-
assert_equal([0, 0, 100, 100], composer.page.box.value)
|
28
|
-
end
|
29
|
-
|
30
|
-
it "allows the customization of the page orientation" do
|
31
|
-
composer = HexaPDF::Composer.new(page_orientation: :landscape)
|
32
|
-
assert_equal([0, 0, 842, 595], composer.page.box.value)
|
33
|
-
end
|
34
|
-
|
35
|
-
it "allows the customization of the margin" do
|
36
|
-
composer = HexaPDF::Composer.new(margin: [100, 80, 60, 40])
|
37
|
-
assert_equal(40, composer.frame.left)
|
38
|
-
assert_equal(60, composer.frame.bottom)
|
39
|
-
assert_equal(475, composer.frame.width)
|
40
|
-
assert_equal(682, composer.frame.height)
|
41
|
-
end
|
42
|
-
|
43
|
-
it "yields itself" do
|
44
|
-
yielded = nil
|
45
|
-
composer = HexaPDF::Composer.new {|c| yielded = c }
|
46
|
-
assert_same(composer, yielded)
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
describe "::create" do
|
51
|
-
it "creates, yields, and writes a document" do
|
52
|
-
io = StringIO.new
|
53
|
-
HexaPDF::Composer.create(io, &:new_page)
|
54
|
-
io.rewind
|
55
|
-
assert_equal(2, HexaPDF::Document.new(io: io).pages.count)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
describe "new_page" do
|
60
|
-
it "creates a new page with the stored information" do
|
61
|
-
c = HexaPDF::Composer.new(page_size: [0, 0, 50, 100], margin: 10)
|
62
|
-
c.new_page
|
63
|
-
assert_equal([0, 0, 50, 100], c.page.box.value)
|
64
|
-
assert_equal(10, c.frame.left)
|
65
|
-
assert_equal(10, c.frame.bottom)
|
66
|
-
end
|
67
|
-
|
68
|
-
it "uses the provided information for the new and all following pages" do
|
69
|
-
@composer.new_page(page_size: [0, 0, 50, 100], margin: 10)
|
70
|
-
assert_equal([0, 0, 50, 100], @composer.page.box.value)
|
71
|
-
assert_equal(10, @composer.frame.left)
|
72
|
-
assert_equal(10, @composer.frame.bottom)
|
73
|
-
@composer.new_page
|
74
|
-
assert_same(@composer.document.pages[2], @composer.page)
|
75
|
-
assert_equal([0, 0, 50, 100], @composer.page.box.value)
|
76
|
-
assert_equal(10, @composer.frame.left)
|
77
|
-
assert_equal(10, @composer.frame.bottom)
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
|
-
it "returns the current x-position" do
|
82
|
-
assert_equal(36, @composer.x)
|
83
|
-
end
|
84
|
-
|
85
|
-
it "returns the current y-position" do
|
86
|
-
assert_equal(806, @composer.y)
|
87
|
-
end
|
88
|
-
|
89
|
-
describe "text" do
|
90
|
-
it "creates a text box and draws it on the canvas" do
|
91
|
-
box = nil
|
92
|
-
@composer.define_singleton_method(:draw_box) {|arg| box = arg }
|
93
|
-
|
94
|
-
@composer.text("Test", width: 10, height: 15)
|
95
|
-
assert_equal(10, box.width)
|
96
|
-
assert_equal(15, box.height)
|
97
|
-
assert_same(@composer.document.fonts.add("Times"), box.style.font)
|
98
|
-
items = box.instance_variable_get(:@items)
|
99
|
-
assert_equal(1, items.length)
|
100
|
-
assert_same(box.style, items.first.style)
|
101
|
-
end
|
102
|
-
|
103
|
-
it "allows setting of a custom style" do
|
104
|
-
box = nil
|
105
|
-
@composer.define_singleton_method(:draw_box) {|arg| box = arg }
|
106
|
-
|
107
|
-
@composer.text("Test", style: HexaPDF::Layout::Style.new(font_size: 20))
|
108
|
-
assert_same(@composer.document.fonts.add("Times"), box.style.font)
|
109
|
-
assert_equal(20, box.style.font_size)
|
110
|
-
end
|
111
|
-
|
112
|
-
it "updates the used style with the provided options" do
|
113
|
-
box = nil
|
114
|
-
@composer.define_singleton_method(:draw_box) {|arg| box = arg }
|
115
|
-
|
116
|
-
@composer.text("Test", style: HexaPDF::Layout::Style.new, font_size: 20)
|
117
|
-
assert_equal(20, box.style.font_size)
|
118
|
-
end
|
119
|
-
end
|
120
|
-
|
121
|
-
describe "formatted_text" do
|
122
|
-
it "creates a text box with the formatted text and draws it on the canvas" do
|
123
|
-
box = nil
|
124
|
-
@composer.define_singleton_method(:draw_box) {|arg| box = arg }
|
125
|
-
|
126
|
-
@composer.formatted_text(["Test"], width: 10, height: 15)
|
127
|
-
assert_equal(10, box.width)
|
128
|
-
assert_equal(15, box.height)
|
129
|
-
assert_equal(1, box.instance_variable_get(:@items).length)
|
130
|
-
end
|
131
|
-
|
132
|
-
it "a hash can be used for custom style properties" do
|
133
|
-
box = nil
|
134
|
-
@composer.define_singleton_method(:draw_box) {|arg| box = arg }
|
135
|
-
|
136
|
-
@composer.formatted_text([{text: "Test", font_size: 20}], align: :center)
|
137
|
-
items = box.instance_variable_get(:@items)
|
138
|
-
assert_equal(1, items.length)
|
139
|
-
assert_equal(20, items.first.style.font_size)
|
140
|
-
assert_equal(:center, items.first.style.align)
|
141
|
-
assert_equal(10, box.style.font_size)
|
142
|
-
end
|
143
|
-
|
144
|
-
it "a hash can be used to provide a custom style" do
|
145
|
-
box = nil
|
146
|
-
@composer.define_singleton_method(:draw_box) {|arg| box = arg }
|
147
|
-
|
148
|
-
@composer.formatted_text([{text: "Test", style: HexaPDF::Layout::Style.new(fill_color: 128),
|
149
|
-
font_size: 20}], align: :center)
|
150
|
-
items = box.instance_variable_get(:@items)
|
151
|
-
assert_equal(20, items.first.style.font_size)
|
152
|
-
assert_equal(128, items.first.style.fill_color)
|
153
|
-
assert_equal(:center, items.first.style.align)
|
154
|
-
end
|
155
|
-
|
156
|
-
it "a hash can be used to link to an URL" do
|
157
|
-
box = nil
|
158
|
-
@composer.define_singleton_method(:draw_box) {|arg| box = arg }
|
159
|
-
|
160
|
-
@composer.formatted_text([{text: "Test", link: "URI"}, {link: "URI"}])
|
161
|
-
items = box.instance_variable_get(:@items)
|
162
|
-
assert_equal(2, items.length)
|
163
|
-
assert_equal(4, items[0].items.length)
|
164
|
-
assert_equal(3, items[1].items.length)
|
165
|
-
assert_equal([:link, {uri: 'URI'}], items[0].style.overlays.instance_variable_get(:@layers)[0])
|
166
|
-
end
|
167
|
-
end
|
168
|
-
|
169
|
-
describe "image" do
|
170
|
-
it "creates an image box and draws it on the canvas" do
|
171
|
-
box = nil
|
172
|
-
@composer.define_singleton_method(:draw_box) {|arg| box = arg }
|
173
|
-
image_path = File.join(TEST_DATA_DIR, 'images', 'gray.jpg')
|
174
|
-
|
175
|
-
@composer.image(image_path, width: 10, height: 15)
|
176
|
-
assert_equal(10, box.width)
|
177
|
-
assert_equal(15, box.height)
|
178
|
-
assert_same(@composer.document.images.add(image_path), box.image)
|
179
|
-
end
|
180
|
-
end
|
181
|
-
|
182
|
-
describe "draw_box" do
|
183
|
-
def create_box(**kwargs)
|
184
|
-
HexaPDF::Layout::Box.new(**kwargs) {}
|
185
|
-
end
|
186
|
-
|
187
|
-
it "draws the box if it completely fits" do
|
188
|
-
@composer.draw_box(create_box(height: 100))
|
189
|
-
@composer.draw_box(create_box)
|
190
|
-
assert_operators(@composer.canvas.contents,
|
191
|
-
[[:save_graphics_state],
|
192
|
-
[:concatenate_matrix, [1, 0, 0, 1, 36, 706]],
|
193
|
-
[:restore_graphics_state],
|
194
|
-
[:save_graphics_state],
|
195
|
-
[:concatenate_matrix, [1, 0, 0, 1, 36, 36]],
|
196
|
-
[:restore_graphics_state]])
|
197
|
-
end
|
198
|
-
|
199
|
-
it "draws the box on a new page if the frame is already full" do
|
200
|
-
first_page_canvas = @composer.canvas
|
201
|
-
@composer.draw_box(create_box)
|
202
|
-
@composer.draw_box(create_box)
|
203
|
-
refute_same(first_page_canvas, @composer.canvas)
|
204
|
-
assert_operators(@composer.canvas.contents,
|
205
|
-
[[:save_graphics_state],
|
206
|
-
[:concatenate_matrix, [1, 0, 0, 1, 36, 36]],
|
207
|
-
[:restore_graphics_state]])
|
208
|
-
end
|
209
|
-
|
210
|
-
it "splits the box across two pages" do
|
211
|
-
first_page_contents = @composer.canvas.contents
|
212
|
-
@composer.draw_box(create_box(height: 400))
|
213
|
-
|
214
|
-
box = create_box(height: 400)
|
215
|
-
box.define_singleton_method(:split) do |*|
|
216
|
-
[box, HexaPDF::Layout::Box.new(height: 100) {}]
|
217
|
-
end
|
218
|
-
@composer.draw_box(box)
|
219
|
-
assert_operators(first_page_contents,
|
220
|
-
[[:save_graphics_state],
|
221
|
-
[:concatenate_matrix, [1, 0, 0, 1, 36, 406]],
|
222
|
-
[:restore_graphics_state],
|
223
|
-
[:save_graphics_state],
|
224
|
-
[:concatenate_matrix, [1, 0, 0, 1, 36, 6]],
|
225
|
-
[:restore_graphics_state]])
|
226
|
-
assert_operators(@composer.canvas.contents,
|
227
|
-
[[:save_graphics_state],
|
228
|
-
[:concatenate_matrix, [1, 0, 0, 1, 36, 706]],
|
229
|
-
[:restore_graphics_state]])
|
230
|
-
end
|
231
|
-
|
232
|
-
it "finds a new region if splitting didn't work" do
|
233
|
-
first_page_contents = @composer.canvas.contents
|
234
|
-
@composer.draw_box(create_box(height: 400))
|
235
|
-
@composer.draw_box(create_box(height: 100, width: 300, style: {position: :float}))
|
236
|
-
|
237
|
-
box = create_box(width: 400, height: 400)
|
238
|
-
@composer.draw_box(box)
|
239
|
-
assert_operators(first_page_contents,
|
240
|
-
[[:save_graphics_state],
|
241
|
-
[:concatenate_matrix, [1, 0, 0, 1, 36, 406]],
|
242
|
-
[:restore_graphics_state],
|
243
|
-
[:save_graphics_state],
|
244
|
-
[:concatenate_matrix, [1, 0, 0, 1, 36, 306]],
|
245
|
-
[:restore_graphics_state]])
|
246
|
-
assert_operators(@composer.canvas.contents,
|
247
|
-
[[:save_graphics_state],
|
248
|
-
[:concatenate_matrix, [1, 0, 0, 1, 36, 406]],
|
249
|
-
[:restore_graphics_state]])
|
250
|
-
end
|
251
|
-
|
252
|
-
it "raises an error if a box doesn't fit onto an empty page" do
|
253
|
-
assert_raises(HexaPDF::Error) do
|
254
|
-
@composer.draw_box(create_box(height: 800))
|
255
|
-
end
|
256
|
-
end
|
257
|
-
end
|
258
|
-
end
|