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,117 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/type/object_stream'
|
5
|
-
|
6
|
-
describe HexaPDF::Type::ObjectStream::Data do
|
7
|
-
before do
|
8
|
-
@data = HexaPDF::Type::ObjectStream::Data.new("5 [1 2]", [1, 5], [0, 2])
|
9
|
-
end
|
10
|
-
|
11
|
-
it "returns the correct [object, oid] pair for a given index" do
|
12
|
-
assert_equal([5, 1], @data.object_by_index(0))
|
13
|
-
assert_equal([[1, 2], 5], @data.object_by_index(1))
|
14
|
-
end
|
15
|
-
|
16
|
-
it "fails if the index is out of bounds" do
|
17
|
-
assert_raises(ArgumentError) { @data.object_by_index(5) }
|
18
|
-
assert_raises(ArgumentError) { @data.object_by_index(-1) }
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
describe HexaPDF::Type::ObjectStream do
|
23
|
-
before do
|
24
|
-
@doc = Object.new
|
25
|
-
@doc.instance_variable_set(:@version, '1.5')
|
26
|
-
def (@doc).trailer
|
27
|
-
@trailer ||= {Encrypt: HexaPDF::Object.new({}, oid: 9)}
|
28
|
-
end
|
29
|
-
@obj = HexaPDF::Type::ObjectStream.new({}, oid: 1, document: @doc)
|
30
|
-
end
|
31
|
-
|
32
|
-
it "correctly parses stream data" do
|
33
|
-
@obj.value = {N: 2, First: 8}
|
34
|
-
@obj.stream = "1 0 5 2 5 [1 2]"
|
35
|
-
data = @obj.parse_stream
|
36
|
-
assert_equal([5, 1], data.object_by_index(0))
|
37
|
-
assert_equal([[1, 2], 5], data.object_by_index(1))
|
38
|
-
end
|
39
|
-
|
40
|
-
it "allows adding and deleting object as well as determining their index" do
|
41
|
-
@obj.add_object(5)
|
42
|
-
@obj.add_object(7)
|
43
|
-
@obj.add_object(9)
|
44
|
-
@obj.add_object(5)
|
45
|
-
assert_equal(0, @obj.object_index(5))
|
46
|
-
assert_equal(1, @obj.object_index(7))
|
47
|
-
assert_equal(2, @obj.object_index(9))
|
48
|
-
|
49
|
-
@obj.delete_object(5)
|
50
|
-
@obj.delete_object(5)
|
51
|
-
assert_equal(0, @obj.object_index(9))
|
52
|
-
assert_equal(1, @obj.object_index(7))
|
53
|
-
assert_nil(@obj.object_index(5))
|
54
|
-
|
55
|
-
@obj.delete_object(7)
|
56
|
-
@obj.delete_object(9)
|
57
|
-
assert_nil(@obj.object_index(5))
|
58
|
-
end
|
59
|
-
|
60
|
-
describe "write objects to stream" do
|
61
|
-
before do
|
62
|
-
@revision = Object.new
|
63
|
-
def @revision.object(obj); obj; end
|
64
|
-
end
|
65
|
-
|
66
|
-
it "processes allowed objects" do
|
67
|
-
@obj.add_object(HexaPDF::Object.new(5, oid: 1))
|
68
|
-
@obj.add_object(HexaPDF::Object.new([1, 2], oid: 5))
|
69
|
-
|
70
|
-
@obj.write_objects(@revision)
|
71
|
-
assert_equal(2, @obj.value[:N])
|
72
|
-
assert_equal(8, @obj.value[:First])
|
73
|
-
assert_equal("1 0 5 2 5 [1 2] ", @obj.stream)
|
74
|
-
end
|
75
|
-
|
76
|
-
it "doesn't allow null objects" do
|
77
|
-
@obj.add_object(HexaPDF::Object.new(nil, oid: 7))
|
78
|
-
@obj.write_objects(@revision)
|
79
|
-
assert_equal(0, @obj.value[:N])
|
80
|
-
assert_equal(0, @obj.value[:First])
|
81
|
-
assert_equal("", @obj.stream)
|
82
|
-
end
|
83
|
-
|
84
|
-
it "doesn't allow objects with gen not 0" do
|
85
|
-
@obj.add_object(HexaPDF::Object.new(:will_be_deleted, oid: 3, gen: 1))
|
86
|
-
@obj.write_objects(@revision)
|
87
|
-
assert_equal(0, @obj.value[:N])
|
88
|
-
assert_equal(0, @obj.value[:First])
|
89
|
-
assert_equal("", @obj.stream)
|
90
|
-
end
|
91
|
-
|
92
|
-
it "doesn't allow the encryption dictionary to be compressed" do
|
93
|
-
@obj.add_object(@doc.trailer[:Encrypt])
|
94
|
-
@obj.write_objects(@revision)
|
95
|
-
assert_equal(0, @obj.value[:N])
|
96
|
-
assert_equal(0, @obj.value[:First])
|
97
|
-
assert_equal("", @obj.stream)
|
98
|
-
end
|
99
|
-
|
100
|
-
it "doesn't allow the Catalog entry to be compressed when encryption is used" do
|
101
|
-
@obj.add_object(HexaPDF::Dictionary.new({Type: :Catalog}, oid: 8))
|
102
|
-
@obj.write_objects(@revision)
|
103
|
-
assert_equal(0, @obj.value[:N])
|
104
|
-
assert_equal(0, @obj.value[:First])
|
105
|
-
assert_equal("", @obj.stream)
|
106
|
-
end
|
107
|
-
end
|
108
|
-
|
109
|
-
it "fails validation if gen != 0" do
|
110
|
-
assert(@obj.validate(auto_correct: false))
|
111
|
-
@obj.gen = 1
|
112
|
-
refute(@obj.validate(auto_correct: false) do |msg, correctable|
|
113
|
-
assert_match(/invalid generation/, msg)
|
114
|
-
refute(correctable)
|
115
|
-
end)
|
116
|
-
end
|
117
|
-
end
|
@@ -1,587 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative '../content/common'
|
5
|
-
require 'stringio'
|
6
|
-
require 'hexapdf/document'
|
7
|
-
require 'hexapdf/type/page'
|
8
|
-
|
9
|
-
describe HexaPDF::Type::Page do
|
10
|
-
before do
|
11
|
-
@doc = HexaPDF::Document.new
|
12
|
-
end
|
13
|
-
|
14
|
-
describe "::media_box" do
|
15
|
-
it "returns the media box for a given paper size" do
|
16
|
-
assert_equal([0, 0, 595, 842], HexaPDF::Type::Page.media_box(:A4))
|
17
|
-
end
|
18
|
-
|
19
|
-
it "respects the orientation key" do
|
20
|
-
assert_equal([0, 0, 842, 595], HexaPDF::Type::Page.media_box(:A4, orientation: :landscape))
|
21
|
-
end
|
22
|
-
|
23
|
-
it "fails if the paper size is unknown" do
|
24
|
-
assert_raises(HexaPDF::Error) { HexaPDF::Type::Page.media_box(:Unknown) }
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
# Asserts that the page's contents contains the operators.
|
29
|
-
def assert_page_operators(page, operators)
|
30
|
-
processor = TestHelper::OperatorRecorder.new
|
31
|
-
page.process_contents(processor)
|
32
|
-
assert_equal(operators, processor.recorded_ops)
|
33
|
-
end
|
34
|
-
|
35
|
-
it "must always be indirect" do
|
36
|
-
page = @doc.add({Type: :Page})
|
37
|
-
page.must_be_indirect = false
|
38
|
-
assert(page.must_be_indirect?)
|
39
|
-
end
|
40
|
-
|
41
|
-
describe "[]" do
|
42
|
-
before do
|
43
|
-
@root = @doc.add({Type: :Pages})
|
44
|
-
@kid = @doc.add({Type: :Pages, Parent: @root})
|
45
|
-
@page = @doc.add({Type: :Page, Parent: @kid})
|
46
|
-
end
|
47
|
-
|
48
|
-
it "works normal for non-inheritable fields" do
|
49
|
-
assert_equal(:Page, @page[:Type])
|
50
|
-
assert_nil(@page[:Dur])
|
51
|
-
end
|
52
|
-
|
53
|
-
it "automatically retrieves inherited values" do
|
54
|
-
@root[:MediaBox] = :media
|
55
|
-
assert_equal(:media, @page[:MediaBox])
|
56
|
-
|
57
|
-
@root[:Resources] = :root_res
|
58
|
-
@kid[:Resources] = :res
|
59
|
-
assert_equal(:res, @page[:Resources])
|
60
|
-
|
61
|
-
@page[:CropBox] = :cropbox
|
62
|
-
assert_equal(:cropbox, @page[:CropBox])
|
63
|
-
|
64
|
-
@kid[:Rotate] = :kid_rotate
|
65
|
-
assert_equal(:kid_rotate, @page[:Rotate])
|
66
|
-
end
|
67
|
-
|
68
|
-
it "returns nil or the default value if no value is set anywhere" do
|
69
|
-
assert_nil(@page[:MediaBox])
|
70
|
-
assert_equal(0, @page[:Rotate])
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
describe "validation" do
|
75
|
-
it "fails if a required inheritable field is not set" do
|
76
|
-
root = @doc.add({Type: :Pages})
|
77
|
-
page = @doc.add({Type: :Page, Parent: root})
|
78
|
-
message = ''
|
79
|
-
refute(page.validate {|m, _| message = m })
|
80
|
-
assert_match(/inheritable.*MediaBox/i, message)
|
81
|
-
end
|
82
|
-
end
|
83
|
-
|
84
|
-
describe "box" do
|
85
|
-
before do
|
86
|
-
@page = @doc.pages.add
|
87
|
-
end
|
88
|
-
|
89
|
-
it "returns the correct media box" do
|
90
|
-
@page[:MediaBox] = :media
|
91
|
-
assert_equal(:media, @page.box(:media))
|
92
|
-
end
|
93
|
-
|
94
|
-
it "returns the correct crop box" do
|
95
|
-
@page[:MediaBox] = :media
|
96
|
-
assert_equal(:media, @page.box(:crop))
|
97
|
-
@page[:CropBox] = :crop
|
98
|
-
assert_equal(:crop, @page.box(:crop))
|
99
|
-
end
|
100
|
-
|
101
|
-
it "returns the correct bleed, trim and art boxes" do
|
102
|
-
@page[:MediaBox] = :media
|
103
|
-
assert_equal(:media, @page.box(:bleed))
|
104
|
-
assert_equal(:media, @page.box(:trim))
|
105
|
-
assert_equal(:media, @page.box(:art))
|
106
|
-
@page[:CropBox] = :crop
|
107
|
-
assert_equal(:crop, @page.box(:bleed))
|
108
|
-
assert_equal(:crop, @page.box(:trim))
|
109
|
-
assert_equal(:crop, @page.box(:art))
|
110
|
-
@page[:BleedBox] = :bleed
|
111
|
-
@page[:TrimBox] = :trim
|
112
|
-
@page[:ArtBox] = :art
|
113
|
-
assert_equal(:bleed, @page.box(:bleed))
|
114
|
-
assert_equal(:trim, @page.box(:trim))
|
115
|
-
assert_equal(:art, @page.box(:art))
|
116
|
-
end
|
117
|
-
|
118
|
-
it "fails if an unknown box type is supplied" do
|
119
|
-
assert_raises(ArgumentError) { @page.box(:undefined) }
|
120
|
-
end
|
121
|
-
|
122
|
-
it "sets the correct box" do
|
123
|
-
@page.box(:media, :media)
|
124
|
-
assert_equal(:media, @page.box(:media))
|
125
|
-
@page.box(:crop, :crop)
|
126
|
-
assert_equal(:crop, @page.box(:crop))
|
127
|
-
@page.box(:bleed, :bleed)
|
128
|
-
assert_equal(:bleed, @page.box(:bleed))
|
129
|
-
@page.box(:trim, :trim)
|
130
|
-
assert_equal(:trim, @page.box(:trim))
|
131
|
-
@page.box(:art, :art)
|
132
|
-
assert_equal(:art, @page.box(:art))
|
133
|
-
end
|
134
|
-
|
135
|
-
it "fails if an unknown box type is supplied when setting a box" do
|
136
|
-
assert_raises(ArgumentError) { @page.box(:undefined, [1, 2, 3, 4]) }
|
137
|
-
end
|
138
|
-
end
|
139
|
-
|
140
|
-
describe "orientation" do
|
141
|
-
before do
|
142
|
-
@page = @doc.pages.add
|
143
|
-
end
|
144
|
-
|
145
|
-
it "returns :portrait for appropriate media boxes and rotation values" do
|
146
|
-
@page.box(:media, [0, 0, 100, 300])
|
147
|
-
assert_equal(:portrait, @page.orientation)
|
148
|
-
@page[:Rotate] = 0
|
149
|
-
assert_equal(:portrait, @page.orientation)
|
150
|
-
@page[:Rotate] = 180
|
151
|
-
assert_equal(:portrait, @page.orientation)
|
152
|
-
|
153
|
-
@page.box(:media, [0, 0, 300, 100])
|
154
|
-
@page[:Rotate] = 90
|
155
|
-
assert_equal(:portrait, @page.orientation)
|
156
|
-
@page[:Rotate] = 270
|
157
|
-
assert_equal(:portrait, @page.orientation)
|
158
|
-
end
|
159
|
-
|
160
|
-
it "returns :landscape for appropriate media boxes and rotation values" do
|
161
|
-
@page.box(:media, [0, 0, 300, 100])
|
162
|
-
assert_equal(:landscape, @page.orientation)
|
163
|
-
@page[:Rotate] = 0
|
164
|
-
assert_equal(:landscape, @page.orientation)
|
165
|
-
@page[:Rotate] = 180
|
166
|
-
assert_equal(:landscape, @page.orientation)
|
167
|
-
|
168
|
-
@page.box(:media, [0, 0, 100, 300])
|
169
|
-
@page[:Rotate] = 90
|
170
|
-
assert_equal(:landscape, @page.orientation)
|
171
|
-
@page[:Rotate] = 270
|
172
|
-
assert_equal(:landscape, @page.orientation)
|
173
|
-
end
|
174
|
-
end
|
175
|
-
|
176
|
-
describe "rotate" do
|
177
|
-
before do
|
178
|
-
@page = @doc.pages.add
|
179
|
-
reset_media_box
|
180
|
-
end
|
181
|
-
|
182
|
-
def reset_media_box
|
183
|
-
@page.box(:media, [50, 100, 200, 300])
|
184
|
-
end
|
185
|
-
|
186
|
-
it "works directly on the :Rotate key" do
|
187
|
-
@page.rotate(90)
|
188
|
-
assert_equal(270, @page[:Rotate])
|
189
|
-
|
190
|
-
@page.rotate(180)
|
191
|
-
assert_equal(90, @page[:Rotate])
|
192
|
-
|
193
|
-
@page.rotate(-90)
|
194
|
-
assert_equal(180, @page[:Rotate])
|
195
|
-
end
|
196
|
-
|
197
|
-
describe "flatten" do
|
198
|
-
it "adjust all page boxes" do
|
199
|
-
@page.box(:crop, @page.box)
|
200
|
-
@page.box(:bleed, @page.box)
|
201
|
-
@page.box(:trim, @page.box)
|
202
|
-
@page.box(:art, @page.box)
|
203
|
-
|
204
|
-
@page.rotate(90, flatten: true)
|
205
|
-
box = [-300, 50, -100, 200]
|
206
|
-
assert_equal(box, @page.box(:media).value)
|
207
|
-
assert_equal(box, @page.box(:crop).value)
|
208
|
-
assert_equal(box, @page.box(:bleed).value)
|
209
|
-
assert_equal(box, @page.box(:trim).value)
|
210
|
-
assert_equal(box, @page.box(:art).value)
|
211
|
-
end
|
212
|
-
|
213
|
-
it "works correctly for 90 degrees" do
|
214
|
-
@page.rotate(90, flatten: true)
|
215
|
-
assert_equal([-300, 50, -100, 200], @page.box(:media).value)
|
216
|
-
assert_equal(" q 0 1 -1 0 0 0 cm Q ", @page.contents)
|
217
|
-
end
|
218
|
-
|
219
|
-
it "works correctly for 180 degrees" do
|
220
|
-
@page.rotate(180, flatten: true)
|
221
|
-
assert_equal([-200, -300, -50, -100], @page.box(:media).value)
|
222
|
-
assert_equal(" q -1 0 0 -1 0 0 cm Q ", @page.contents)
|
223
|
-
end
|
224
|
-
|
225
|
-
it "works correctly for 270 degrees" do
|
226
|
-
@page.rotate(270, flatten: true)
|
227
|
-
assert_equal([100, -200, 300, -50], @page.box(:media).value)
|
228
|
-
assert_equal(" q 0 -1 1 0 0 0 cm Q ", @page.contents)
|
229
|
-
end
|
230
|
-
end
|
231
|
-
|
232
|
-
it "fails if the angle is not a multiple of 90" do
|
233
|
-
assert_raises(ArgumentError) { @page.rotate(27) }
|
234
|
-
end
|
235
|
-
end
|
236
|
-
|
237
|
-
describe "contents" do
|
238
|
-
it "returns the contents of a single content stream" do
|
239
|
-
page = @doc.pages.add
|
240
|
-
page[:Contents] = @doc.wrap({}, stream: 'q 10 w Q')
|
241
|
-
assert_equal('q 10 w Q', page.contents)
|
242
|
-
end
|
243
|
-
|
244
|
-
it "returns the concatenated contents of multiple content stream" do
|
245
|
-
page = @doc.pages.add
|
246
|
-
page[:Contents] = [@doc.wrap({}, stream: 'q 10'), @doc.wrap({}, stream: 'w Q')]
|
247
|
-
assert_equal('q 10 w Q', page.contents)
|
248
|
-
end
|
249
|
-
end
|
250
|
-
|
251
|
-
describe "contents=" do
|
252
|
-
it "creates a content stream if none already exist" do
|
253
|
-
page = @doc.pages.add
|
254
|
-
page.contents = 'test'
|
255
|
-
assert_equal('test', page[:Contents].stream)
|
256
|
-
end
|
257
|
-
|
258
|
-
it "reuses an existing content stream" do
|
259
|
-
page = @doc.pages.add
|
260
|
-
page[:Contents] = content = @doc.wrap({}, stream: 'q 10 w Q')
|
261
|
-
page.contents = 'test'
|
262
|
-
assert_equal(content, page[:Contents])
|
263
|
-
assert_equal('test', content.stream)
|
264
|
-
end
|
265
|
-
|
266
|
-
it "reuses the first content stream and deletes the rest if more than one exist" do
|
267
|
-
page = @doc.pages.add
|
268
|
-
page[:Contents] = [content = @doc.add({}, stream: 'q 10 w Q'), @doc.add({}, stream: 'q Q')]
|
269
|
-
page.contents = 'test'
|
270
|
-
assert_equal(content, page[:Contents])
|
271
|
-
assert_equal('test', content.stream)
|
272
|
-
end
|
273
|
-
end
|
274
|
-
|
275
|
-
describe "resources" do
|
276
|
-
it "creates the resource dictionary if it is not found" do
|
277
|
-
page = @doc.add({Type: :Page, Parent: @doc.pages.root})
|
278
|
-
resources = page.resources
|
279
|
-
assert_equal(:XXResources, resources.type)
|
280
|
-
assert_equal({ProcSet: [:PDF, :Text, :ImageB, :ImageC, :ImageI]}, resources.value)
|
281
|
-
end
|
282
|
-
|
283
|
-
it "returns the already used resource dictionary" do
|
284
|
-
@doc.pages.root[:Resources] = {Font: {F1: nil}}
|
285
|
-
page = @doc.pages.add(@doc.add({Type: :Page}))
|
286
|
-
resources = page.resources
|
287
|
-
assert_equal(:XXResources, resources.type)
|
288
|
-
assert_equal(@doc.pages.root[:Resources], resources)
|
289
|
-
end
|
290
|
-
end
|
291
|
-
|
292
|
-
describe "process_contents" do
|
293
|
-
it "parses the contents and processes it" do
|
294
|
-
page = @doc.pages.add
|
295
|
-
page[:Contents] = @doc.wrap({}, stream: 'q 10 w Q')
|
296
|
-
assert_page_operators(page, [[:save_graphics_state], [:set_line_width, [10]],
|
297
|
-
[:restore_graphics_state]])
|
298
|
-
end
|
299
|
-
end
|
300
|
-
|
301
|
-
describe "index" do
|
302
|
-
it "returns the index of the page in the page tree" do
|
303
|
-
kid1 = @doc.add({Type: :Pages, Parent: @doc.pages.root, Count: 4})
|
304
|
-
@doc.pages.root[:Kids] << kid1
|
305
|
-
|
306
|
-
kid11 = @doc.add({Type: :Pages, Parent: kid1})
|
307
|
-
page1 = kid11.add_page
|
308
|
-
kid1[:Kids] << kid11
|
309
|
-
page2 = kid1.add_page
|
310
|
-
kid12 = @doc.add({Type: :Pages, Parent: kid1})
|
311
|
-
page3 = kid12.add_page
|
312
|
-
page4 = kid12.add_page
|
313
|
-
kid1[:Kids] << kid12
|
314
|
-
|
315
|
-
assert_equal(0, page1.index)
|
316
|
-
assert_equal(1, page2.index)
|
317
|
-
assert_equal(2, page3.index)
|
318
|
-
assert_equal(3, page4.index)
|
319
|
-
end
|
320
|
-
end
|
321
|
-
|
322
|
-
it "returns all ancestor page tree nodes of a page" do
|
323
|
-
root = @doc.add({Type: :Pages})
|
324
|
-
kid = @doc.add({Type: :Pages, Parent: root})
|
325
|
-
page = @doc.add({Type: :Page, Parent: kid})
|
326
|
-
assert_equal([kid, root], page.ancestor_nodes)
|
327
|
-
end
|
328
|
-
|
329
|
-
describe "canvas" do
|
330
|
-
before do
|
331
|
-
@page = @doc.pages.add
|
332
|
-
end
|
333
|
-
|
334
|
-
it "works correctly if invoked on an empty page, using type :page in first invocation" do
|
335
|
-
@page.canvas.line_width = 10
|
336
|
-
assert_page_operators(@page, [[:set_line_width, [10]]])
|
337
|
-
|
338
|
-
@page.canvas(type: :overlay).line_width = 5
|
339
|
-
assert_page_operators(@page, [[:save_graphics_state], [:restore_graphics_state],
|
340
|
-
[:save_graphics_state], [:set_line_width, [10]],
|
341
|
-
[:restore_graphics_state], [:save_graphics_state],
|
342
|
-
[:set_line_width, [5]], [:restore_graphics_state]])
|
343
|
-
|
344
|
-
@page.canvas(type: :underlay).line_width = 2
|
345
|
-
assert_page_operators(@page, [[:save_graphics_state], [:set_line_width, [2]],
|
346
|
-
[:restore_graphics_state], [:save_graphics_state],
|
347
|
-
[:set_line_width, [10]],
|
348
|
-
[:restore_graphics_state], [:save_graphics_state],
|
349
|
-
[:set_line_width, [5]], [:restore_graphics_state]])
|
350
|
-
end
|
351
|
-
|
352
|
-
it "works correctly if invoked on an empty page, using type :underlay in first invocation" do
|
353
|
-
@page.canvas(type: :underlay).line_width = 2
|
354
|
-
assert_page_operators(@page, [[:save_graphics_state], [:set_line_width, [2]],
|
355
|
-
[:restore_graphics_state], [:save_graphics_state],
|
356
|
-
[:restore_graphics_state], [:save_graphics_state],
|
357
|
-
[:restore_graphics_state]])
|
358
|
-
|
359
|
-
@page.canvas.line_width = 10
|
360
|
-
assert_page_operators(@page, [[:save_graphics_state], [:set_line_width, [2]],
|
361
|
-
[:restore_graphics_state], [:save_graphics_state],
|
362
|
-
[:set_line_width, [10]], [:restore_graphics_state],
|
363
|
-
[:save_graphics_state], [:restore_graphics_state]])
|
364
|
-
|
365
|
-
@page.canvas(type: :overlay).line_width = 5
|
366
|
-
assert_page_operators(@page, [[:save_graphics_state], [:set_line_width, [2]],
|
367
|
-
[:restore_graphics_state], [:save_graphics_state],
|
368
|
-
[:set_line_width, [10]],
|
369
|
-
[:restore_graphics_state], [:save_graphics_state],
|
370
|
-
[:set_line_width, [5]], [:restore_graphics_state]])
|
371
|
-
end
|
372
|
-
|
373
|
-
it "works correctly if invoked on a page with existing contents" do
|
374
|
-
@page.contents = "10 w"
|
375
|
-
|
376
|
-
@page.canvas(type: :overlay).line_width = 5
|
377
|
-
assert_page_operators(@page, [[:save_graphics_state], [:restore_graphics_state],
|
378
|
-
[:save_graphics_state], [:set_line_width, [10]],
|
379
|
-
[:restore_graphics_state],
|
380
|
-
[:save_graphics_state], [:set_line_width, [5]],
|
381
|
-
[:restore_graphics_state]])
|
382
|
-
|
383
|
-
@page.canvas(type: :underlay).line_width = 2
|
384
|
-
assert_page_operators(@page, [[:save_graphics_state], [:set_line_width, [2]],
|
385
|
-
[:restore_graphics_state], [:save_graphics_state],
|
386
|
-
[:set_line_width, [10]],
|
387
|
-
[:restore_graphics_state],
|
388
|
-
[:save_graphics_state], [:set_line_width, [5]],
|
389
|
-
[:restore_graphics_state]])
|
390
|
-
end
|
391
|
-
|
392
|
-
it "works correctly if the page has its origin not at (0,0)" do
|
393
|
-
@page.box(:media, [-10, -5, 100, 300])
|
394
|
-
@page.canvas(type: :underlay).line_width = 2
|
395
|
-
@page.canvas(type: :page).line_width = 2
|
396
|
-
@page.canvas(type: :overlay).line_width = 2
|
397
|
-
|
398
|
-
assert_page_operators(@page, [[:save_graphics_state],
|
399
|
-
[:concatenate_matrix, [1, 0, 0, 1, -10, -5]],
|
400
|
-
[:set_line_width, [2]],
|
401
|
-
[:restore_graphics_state],
|
402
|
-
|
403
|
-
[:save_graphics_state],
|
404
|
-
[:concatenate_matrix, [1, 0, 0, 1, -10, -5]],
|
405
|
-
[:set_line_width, [2]],
|
406
|
-
[:restore_graphics_state],
|
407
|
-
|
408
|
-
[:save_graphics_state],
|
409
|
-
[:concatenate_matrix, [1, 0, 0, 1, -10, -5]],
|
410
|
-
[:set_line_width, [2]],
|
411
|
-
[:restore_graphics_state]])
|
412
|
-
end
|
413
|
-
|
414
|
-
it "fails if the page canvas is requested for a page with existing contents" do
|
415
|
-
@page.contents = "q Q"
|
416
|
-
assert_raises(HexaPDF::Error) { @page.canvas }
|
417
|
-
end
|
418
|
-
|
419
|
-
it "fails if called with an incorrect type argument" do
|
420
|
-
assert_raises(ArgumentError) { @page.canvas(type: :something) }
|
421
|
-
end
|
422
|
-
end
|
423
|
-
|
424
|
-
describe "to_form_xobject" do
|
425
|
-
it "creates an independent form xobject" do
|
426
|
-
page = @doc.pages.add
|
427
|
-
page.contents = "test"
|
428
|
-
form = page.to_form_xobject
|
429
|
-
refute(form.indirect?)
|
430
|
-
assert_equal(form.box.value, page.box.value)
|
431
|
-
end
|
432
|
-
|
433
|
-
it "works for pages without content" do
|
434
|
-
page = @doc.pages.add
|
435
|
-
form = page.to_form_xobject
|
436
|
-
assert_equal('', form.stream)
|
437
|
-
end
|
438
|
-
|
439
|
-
it "uses the raw stream data if possible to avoid unnecessary work" do
|
440
|
-
page = @doc.pages.add
|
441
|
-
page.contents = HexaPDF::StreamData.new(StringIO.new("test"))
|
442
|
-
form = page.to_form_xobject
|
443
|
-
assert_same(form.raw_stream, page[:Contents].raw_stream)
|
444
|
-
|
445
|
-
form = page.to_form_xobject(reference: false)
|
446
|
-
refute_same(form.raw_stream, page[:Contents].raw_stream)
|
447
|
-
end
|
448
|
-
end
|
449
|
-
|
450
|
-
describe "flatten_annotations" do
|
451
|
-
before do
|
452
|
-
@page = @doc.pages.add
|
453
|
-
@appearance = @doc.add({Type: :XObject, Subtype: :Form, BBox: [-10, -5, 50, 20]}, stream: "")
|
454
|
-
@annot1 = @doc.add({Type: :Annot, Subtype: :Text, Rect: [100, 100, 160, 125], AP: {N: @appearance}})
|
455
|
-
@annot2 = @doc.add({Rect: [10, 10, 70, 35], AP: {N: @appearance}})
|
456
|
-
@page[:Annots] = [@annot1, @annot2]
|
457
|
-
@canvas = @page.canvas(type: :overlay)
|
458
|
-
end
|
459
|
-
|
460
|
-
it "does nothing if the page doesn't have any annotations" do
|
461
|
-
@page.delete(:Annots)
|
462
|
-
result = @page.flatten_annotations
|
463
|
-
assert(result.empty?)
|
464
|
-
assert_operators(@canvas.contents, [])
|
465
|
-
end
|
466
|
-
|
467
|
-
it "flattens all annotations of the page by default" do
|
468
|
-
result = @page.flatten_annotations
|
469
|
-
assert(result.empty?)
|
470
|
-
assert_operators(@canvas.contents, [[:save_graphics_state],
|
471
|
-
[:save_graphics_state],
|
472
|
-
[:concatenate_matrix, [1.0, 0, 0, 1.0, 110, 105]],
|
473
|
-
[:paint_xobject, [:XO1]],
|
474
|
-
[:restore_graphics_state],
|
475
|
-
[:save_graphics_state],
|
476
|
-
[:concatenate_matrix, [1.0, 0, 0, 1.0, 20, 15]],
|
477
|
-
[:paint_xobject, [:XO1]],
|
478
|
-
[:restore_graphics_state],
|
479
|
-
[:restore_graphics_state]])
|
480
|
-
assert(@annot1.null?)
|
481
|
-
assert(@annot2.null?)
|
482
|
-
end
|
483
|
-
|
484
|
-
it "only deletes the widget annotation of a form field even if it is embedded in the field object" do
|
485
|
-
form = @doc.acro_form(create: true)
|
486
|
-
field = form.create_text_field('test')
|
487
|
-
widget = field.create_widget(@page, Rect: [200, 200, 250, 215])
|
488
|
-
field.field_value = 'hello'
|
489
|
-
|
490
|
-
assert_same(widget.data, field.data)
|
491
|
-
result = @page.flatten_annotations([widget])
|
492
|
-
assert(result.empty?)
|
493
|
-
refute(field.null?)
|
494
|
-
end
|
495
|
-
|
496
|
-
it "does nothing if a given annotation is not part of the page" do
|
497
|
-
annots = [{Test: :Object}]
|
498
|
-
result = @page.flatten_annotations(annots)
|
499
|
-
assert_equal(annots, result)
|
500
|
-
end
|
501
|
-
|
502
|
-
it "deletes hidden annotations but doesn't include them in the content stream" do
|
503
|
-
@annot1.flag(:hidden)
|
504
|
-
result = @page.flatten_annotations
|
505
|
-
assert(result.empty?)
|
506
|
-
assert(@annot1.null?)
|
507
|
-
assert_operators(@canvas.contents, [[:save_graphics_state],
|
508
|
-
[:save_graphics_state],
|
509
|
-
[:concatenate_matrix, [1.0, 0, 0, 1.0, 20, 15]],
|
510
|
-
[:paint_xobject, [:XO1]],
|
511
|
-
[:restore_graphics_state],
|
512
|
-
[:restore_graphics_state]])
|
513
|
-
end
|
514
|
-
|
515
|
-
it "deletes invisible annotations but doesn't include them in the content stream" do
|
516
|
-
@annot1.flag(:invisible)
|
517
|
-
result = @page.flatten_annotations
|
518
|
-
assert(result.empty?)
|
519
|
-
assert(@annot1.null?)
|
520
|
-
assert_operators(@canvas.contents, [[:save_graphics_state],
|
521
|
-
[:save_graphics_state],
|
522
|
-
[:concatenate_matrix, [1.0, 0, 0, 1.0, 20, 15]],
|
523
|
-
[:paint_xobject, [:XO1]],
|
524
|
-
[:restore_graphics_state],
|
525
|
-
[:restore_graphics_state]])
|
526
|
-
end
|
527
|
-
|
528
|
-
it "ignores annotations without appearane stream" do
|
529
|
-
@annot1.delete(:AP)
|
530
|
-
result = @page.flatten_annotations
|
531
|
-
assert_equal([@annot1], result)
|
532
|
-
refute(@annot1.empty?)
|
533
|
-
assert_operators(@canvas.contents, [[:save_graphics_state],
|
534
|
-
[:save_graphics_state],
|
535
|
-
[:concatenate_matrix, [1.0, 0, 0, 1.0, 20, 15]],
|
536
|
-
[:paint_xobject, [:XO1]],
|
537
|
-
[:restore_graphics_state],
|
538
|
-
[:restore_graphics_state]])
|
539
|
-
end
|
540
|
-
|
541
|
-
it "adjusts the position to counter the translation in #canvas based on the page's media box" do
|
542
|
-
@page[:MediaBox] = [-15, -15, 100, 100]
|
543
|
-
@page.flatten_annotations
|
544
|
-
assert_operators(@canvas.contents, [:concatenate_matrix, [1, 0, 0, 1, 15, 15]], range: 1)
|
545
|
-
end
|
546
|
-
|
547
|
-
it "adjusts the position in case the form /Matrix has an offset" do
|
548
|
-
@appearance[:Matrix] = [1, 0, 0, 1, 15, 15]
|
549
|
-
@page.flatten_annotations
|
550
|
-
assert_operators(@canvas.contents, [:concatenate_matrix, [1, 0, 0, 1, 95, 90]], range: 2)
|
551
|
-
end
|
552
|
-
|
553
|
-
it "adjusts the position for an appearance with a 90 degree rotation" do
|
554
|
-
@appearance[:Matrix] = [0, 1, -1, 0, 0, 0]
|
555
|
-
@annot1[:Rect] = [100, 100, 125, 160]
|
556
|
-
@page.flatten_annotations
|
557
|
-
assert_operators(@canvas.contents, [:concatenate_matrix, [1, 0, 0, 1, 120, 110]], range: 2)
|
558
|
-
end
|
559
|
-
|
560
|
-
it "adjusts the position for an appearance with a -90 degree rotation" do
|
561
|
-
@appearance[:Matrix] = [0, -1, 1, 0, 0, 0]
|
562
|
-
@annot1[:Rect] = [100, 100, 125, 160]
|
563
|
-
@page.flatten_annotations
|
564
|
-
assert_operators(@canvas.contents, [:concatenate_matrix, [1, 0, 0, 1, 105, 150]], range: 2)
|
565
|
-
end
|
566
|
-
|
567
|
-
it "adjusts the position for an appearance with a 180 degree rotation" do
|
568
|
-
@appearance[:Matrix] = [-1, 0, 0, -1, 0, 0]
|
569
|
-
@page.flatten_annotations
|
570
|
-
assert_operators(@canvas.contents, [:concatenate_matrix, [1, 0, 0, 1, 150, 120]], range: 2)
|
571
|
-
end
|
572
|
-
|
573
|
-
it "ignores an appearance with a rotation that is not a mulitple of 90" do
|
574
|
-
@appearance[:Matrix] = [-1, 0.5, 0.5, -1, 0, 0]
|
575
|
-
result = @page.flatten_annotations
|
576
|
-
assert_equal([@annot1, @annot2], result)
|
577
|
-
assert_operators(@canvas.contents, [[:save_graphics_state], [:restore_graphics_state]])
|
578
|
-
end
|
579
|
-
|
580
|
-
it "scales the appearance to fit into the annotations's rectangle" do
|
581
|
-
@annot1[:Rect] = [100, 100, 130, 150]
|
582
|
-
@page.flatten_annotations
|
583
|
-
assert_operators(@canvas.contents, [:concatenate_matrix, [0.5, 0, 0, 2, 110, 105]], range: 2)
|
584
|
-
end
|
585
|
-
|
586
|
-
end
|
587
|
-
end
|