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,259 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'hexapdf/document'
|
5
|
-
require 'hexapdf/image_loader/png'
|
6
|
-
|
7
|
-
describe HexaPDF::ImageLoader::PNG do
|
8
|
-
before do
|
9
|
-
@images = Dir.glob(File.join(TEST_DATA_DIR, 'images', '*.png'))
|
10
|
-
@doc = HexaPDF::Document.new
|
11
|
-
@loader = HexaPDF::ImageLoader::PNG
|
12
|
-
end
|
13
|
-
|
14
|
-
describe "handles?" do
|
15
|
-
it "works for png files" do
|
16
|
-
@images.each do |image|
|
17
|
-
assert(@loader.handles?(image))
|
18
|
-
File.open(image, 'rb') {|file| assert(@loader.handles?(file)) }
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
def build_png(header_data, others = '')
|
24
|
-
@loader::MAGIC_FILE_MARKER + [13, "IHDR", *header_data].pack('NA4N2C5N') + others +
|
25
|
-
[0, "IEND", 0].pack('NA4N')
|
26
|
-
end
|
27
|
-
|
28
|
-
def assert_image(image, width, height, bpc, color_space, stream)
|
29
|
-
assert_equal(width, image[:Width])
|
30
|
-
assert_equal(height, image[:Height])
|
31
|
-
assert_equal(bpc, image[:BitsPerComponent])
|
32
|
-
assert_equal(color_space, @doc.unwrap(image[:ColorSpace])) if color_space
|
33
|
-
data = stream.map {|row| [row.map {|i| i.to_s(2).rjust(bpc, '0') }.join("")].pack('B*') }.join("")
|
34
|
-
assert_equal(data, image.stream)
|
35
|
-
end
|
36
|
-
|
37
|
-
# Note: colors and image data for comparisons were extracted using GIMP and its color tools
|
38
|
-
describe "load" do
|
39
|
-
before do
|
40
|
-
@greyscale_1bit_data = [[1, 1, 0, 0, 0],
|
41
|
-
[1, 1, 0, 1, 0],
|
42
|
-
[1, 1, 1, 1, 1],
|
43
|
-
[0, 1, 0, 1, 0],
|
44
|
-
[0, 0, 0, 0, 0]]
|
45
|
-
end
|
46
|
-
|
47
|
-
it "can work with an IO stream instead of a file" do
|
48
|
-
png = @images.grep(/greyscale-1bit\.png/).first
|
49
|
-
File.open(png, 'rb') do |file|
|
50
|
-
image = @loader.load(@doc, file)
|
51
|
-
assert_image(image, 5, 5, 1, :DeviceGray, @greyscale_1bit_data)
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
it "works for a 1-bit greyscale png" do
|
56
|
-
png = @images.grep(/greyscale-1bit\.png/).first
|
57
|
-
image = @loader.load(@doc, png)
|
58
|
-
assert_image(image, 5, 5, 1, :DeviceGray, @greyscale_1bit_data)
|
59
|
-
end
|
60
|
-
|
61
|
-
it "works for a 2-bit greyscale png" do
|
62
|
-
png = @images.grep(/greyscale-2bit\.png/).first
|
63
|
-
image = @loader.load(@doc, png)
|
64
|
-
data = [[2, 2, 0, 0, 0],
|
65
|
-
[2, 3, 0, 3, 0],
|
66
|
-
[3, 3, 3, 3, 3],
|
67
|
-
[1, 3, 0, 3, 0],
|
68
|
-
[1, 1, 0, 0, 0]]
|
69
|
-
assert_image(image, 5, 5, 2, :DeviceGray, data)
|
70
|
-
end
|
71
|
-
|
72
|
-
it "works for a 4-bit greyscale png" do
|
73
|
-
png = @images.grep(/greyscale-4bit\.png/).first
|
74
|
-
image = @loader.load(@doc, png)
|
75
|
-
data = [[15, 12, 9, 6, 3]] * 5
|
76
|
-
assert_image(image, 5, 5, 4, :DeviceGray, data)
|
77
|
-
end
|
78
|
-
|
79
|
-
it "works for a 8-bit greyscale png" do
|
80
|
-
png = @images.grep(/greyscale-8bit\.png/).first
|
81
|
-
image = @loader.load(@doc, png)
|
82
|
-
data = [[254, 203, 153, 101, 50],
|
83
|
-
[253, 203, 152, 100, 50],
|
84
|
-
[254, 203, 151, 101, 50],
|
85
|
-
[253, 202, 151, 100, 50],
|
86
|
-
[253, 202, 151, 100, 49]]
|
87
|
-
assert_image(image, 5, 5, 8, :DeviceGray, data)
|
88
|
-
end
|
89
|
-
|
90
|
-
it "works for a 8-bit greyscale png with alpha" do
|
91
|
-
png = @images.grep(/greyscale-alpha-8bit\.png/).first
|
92
|
-
image = @loader.load(@doc, png)
|
93
|
-
data = [[254, 203, 153, 101, 50],
|
94
|
-
[253, 203, 152, 100, 50],
|
95
|
-
[254, 203, 151, 101, 50],
|
96
|
-
[255, 202, 151, 101, 50],
|
97
|
-
[255, 202, 151, 101, 50]]
|
98
|
-
assert_image(image, 5, 5, 8, :DeviceGray, data)
|
99
|
-
|
100
|
-
data = [[255, 255, 255, 255, 255]] * 3 +
|
101
|
-
[[129, 129, 129, 129, 129]] * 2
|
102
|
-
assert_image(image[:SMask], 5, 5, 8, :DeviceGray, data)
|
103
|
-
end
|
104
|
-
|
105
|
-
it "works for a 8-bit greyscale png with a single transparent color" do
|
106
|
-
png = @images.grep(/greyscale-trns-8bit\.png/).first
|
107
|
-
image = @loader.load(@doc, png)
|
108
|
-
data = [[254, 203, 153, 101, 50],
|
109
|
-
[253, 203, 152, 100, 50],
|
110
|
-
[254, 203, 151, 101, 50],
|
111
|
-
[253, 202, 151, 100, 50],
|
112
|
-
[253, 202, 151, 100, 49]]
|
113
|
-
assert_image(image, 5, 5, 8, :DeviceGray, data)
|
114
|
-
assert_equal([203, 203], image[:Mask].value)
|
115
|
-
end
|
116
|
-
|
117
|
-
it "works for a greyscale png with a gamma value of 1" do
|
118
|
-
png = @images.grep(/greyscale-with-gamma1\.0\.png/).first
|
119
|
-
image = @loader.load(@doc, png)
|
120
|
-
assert_equal(:DeviceGray, image[:ColorSpace])
|
121
|
-
end
|
122
|
-
|
123
|
-
it "works for a greyscale png with a gamma value of 1/1.5" do
|
124
|
-
png = @images.grep(/greyscale-with-gamma1\.5\.png/).first
|
125
|
-
image = @loader.load(@doc, png)
|
126
|
-
assert_equal([:CalGray, {WhitePoint: [1.0, 1.0, 1.0], Gamma: 1 / 1.5}], image[:ColorSpace].value)
|
127
|
-
end
|
128
|
-
|
129
|
-
it "works for an indexed 1-bit png" do
|
130
|
-
png = @images.grep(/indexed-1bit\.png/).first
|
131
|
-
image = @loader.load(@doc, png)
|
132
|
-
color_space = [:Indexed, :DeviceRGB, 1, "\xFF".b * 3 << "\x0".b * 3]
|
133
|
-
data = [[1, 0, 0, 0, 1]] * 5
|
134
|
-
assert_image(image, 5, 5, 1, color_space, data)
|
135
|
-
end
|
136
|
-
|
137
|
-
it "works for an indexed 2-bit png" do
|
138
|
-
png = @images.grep(/indexed-2bit\.png/).first
|
139
|
-
image = @loader.load(@doc, png)
|
140
|
-
colors = [44, 117, 63, 55, 118, 165, 97, 172, 110, 164, 189, 209].pack('C*')
|
141
|
-
data = [[1, 1, 3, 2, 0]] * 5
|
142
|
-
assert_image(image, 5, 5, 2, [:Indexed, :DeviceRGB, 3, colors], data)
|
143
|
-
end
|
144
|
-
|
145
|
-
it "works for an indexed 4-bit png" do
|
146
|
-
png = @images.grep(/indexed-4bit\.png/).first
|
147
|
-
image = @loader.load(@doc, png)
|
148
|
-
data = [[0, 6, 13, 11, 3],
|
149
|
-
[0, 7, 14, 11, 2],
|
150
|
-
[0, 7, 15, 10, 1],
|
151
|
-
[4, 8, 12, 9, 5],
|
152
|
-
[4, 8, 12, 9, 5]]
|
153
|
-
assert_image(image, 5, 5, 4, nil, data)
|
154
|
-
end
|
155
|
-
|
156
|
-
it "works for an indexed 8-bit png" do
|
157
|
-
png = @images.grep(/indexed-8bit\.png/).first
|
158
|
-
image = @loader.load(@doc, png)
|
159
|
-
data = [[0, 8, 21, 15, 1],
|
160
|
-
[0, 7, 20, 13, 3],
|
161
|
-
[0, 10, 17, 14, 5],
|
162
|
-
[2, 11, 18, 16, 6],
|
163
|
-
[2, 9, 19, 12, 4]]
|
164
|
-
assert_image(image, 5, 5, 8, nil, data)
|
165
|
-
end
|
166
|
-
|
167
|
-
it "works for an indexed 4-bit png with alpha values" do
|
168
|
-
png = @images.grep(/indexed-alpha-4bit\.png/).first
|
169
|
-
image = @loader.load(@doc, png)
|
170
|
-
data = [[5, 6, 7, 8, 9],
|
171
|
-
[5, 10, 11, 8, 9],
|
172
|
-
[5, 10, 11, 8, 9],
|
173
|
-
[0, 1, 2, 3, 4],
|
174
|
-
[0, 1, 2, 3, 4]]
|
175
|
-
assert_image(image, 5, 5, 4, nil, data)
|
176
|
-
|
177
|
-
data = [[255, 255, 255, 255, 255]] * 3 +
|
178
|
-
[[191, 191, 191, 191, 191]] * 2
|
179
|
-
assert_image(image[:SMask], 5, 5, 8, :DeviceGray, data)
|
180
|
-
end
|
181
|
-
|
182
|
-
it "works for an indexed 8-bit png with alpha values" do
|
183
|
-
png = @images.grep(/indexed-alpha-8bit\.png/).first
|
184
|
-
image = @loader.load(@doc, png)
|
185
|
-
data = [[5, 10, 11, 7, 6],
|
186
|
-
[5, 8, 9, 7, 6],
|
187
|
-
[5, 8, 9, 7, 6],
|
188
|
-
[0, 1, 4, 2, 3],
|
189
|
-
[0, 1, 4, 2, 3]]
|
190
|
-
assert_image(image, 5, 5, 8, nil, data)
|
191
|
-
|
192
|
-
data = [[255, 255, 255, 255, 255]] * 3 +
|
193
|
-
[[191, 191, 191, 191, 191]] * 2
|
194
|
-
assert_image(image[:SMask], 5, 5, 8, :DeviceGray, data)
|
195
|
-
end
|
196
|
-
|
197
|
-
it "works for a true color 8-bit png" do
|
198
|
-
png = @images.grep(/truecolour-8bit\.png/).first
|
199
|
-
image = @loader.load(@doc, png)
|
200
|
-
data = [[12, 92, 146, 80, 136, 175, 167, 193, 213, 97, 175, 101, 38, 113, 50],
|
201
|
-
[12, 92, 146, 81, 137, 176, 168, 194, 214, 97, 175, 101, 38, 113, 49],
|
202
|
-
[12, 92, 146, 81, 137, 176, 169, 195, 214, 96, 175, 101, 37, 113, 49],
|
203
|
-
[12, 92, 146, 81, 138, 176, 171, 195, 214, 96, 176, 101, 37, 113, 49],
|
204
|
-
[12, 92, 146, 82, 137, 177, 171, 196, 215, 97, 176, 102, 37, 113, 49]]
|
205
|
-
assert_image(image, 5, 5, 8, :DeviceRGB, data)
|
206
|
-
end
|
207
|
-
|
208
|
-
it "works for a true color 8-bit png with alpha" do
|
209
|
-
png_data = File.binread(@images.grep(/truecolour-alpha-8bit\.png/).first)
|
210
|
-
png_data[33, 0] = [0, "tRNS", 0].pack('NA4N') # add invalid tRNS chunk
|
211
|
-
image = @loader.load(@doc, StringIO.new(png_data))
|
212
|
-
data = [[12, 92, 146, 80, 136, 175, 167, 193, 213, 97, 175, 101, 38, 113, 50],
|
213
|
-
[12, 92, 146, 81, 137, 176, 168, 194, 214, 97, 175, 101, 38, 113, 49],
|
214
|
-
[12, 92, 146, 81, 137, 176, 169, 195, 214, 96, 175, 101, 37, 113, 49],
|
215
|
-
[12, 92, 146, 81, 137, 176, 169, 195, 214, 96, 175, 101, 37, 113, 49],
|
216
|
-
[12, 92, 146, 81, 137, 176, 169, 195, 214, 96, 175, 101, 37, 113, 49]]
|
217
|
-
assert_image(image, 5, 5, 8, :DeviceRGB, data)
|
218
|
-
|
219
|
-
data = [[255, 255, 255, 255, 255]] * 3 +
|
220
|
-
[[191, 191, 191, 191, 191]] * 2
|
221
|
-
assert_image(image[:SMask], 5, 5, 8, :DeviceGray, data)
|
222
|
-
end
|
223
|
-
|
224
|
-
it "works for true color 8-bit pngs with an sRGB chunk or gAMA/cHRM chunks" do
|
225
|
-
@images.grep(/truecolour-(?:srgb|gama-chrm)-8bit\.png/).each do |png|
|
226
|
-
image = @loader.load(@doc, png)
|
227
|
-
# For the literal numbers see http://www.brucelindbloom.com/index.html?Eqn_RGB_XYZ_Matrix.html
|
228
|
-
[0.9505, 1.0, 1.0891].zip(image[:ColorSpace][1][:WhitePoint]).each do |r, e|
|
229
|
-
assert_in_delta(r, e, 0.0001)
|
230
|
-
end
|
231
|
-
[0.4124, 0.2126, 0.0193, 0.3576, 0.7152, 0.1192, 0.1805, 0.0722, 0.9505].
|
232
|
-
zip(image[:ColorSpace][1][:Matrix]).each do |r, e|
|
233
|
-
assert_in_delta(r, e, 0.0001)
|
234
|
-
end
|
235
|
-
if png.match?(/srgb/)
|
236
|
-
assert_equal(:AbsoluteColorimetric, image[:Intent])
|
237
|
-
end
|
238
|
-
end
|
239
|
-
end
|
240
|
-
|
241
|
-
it "fails for unsupported PNG compression methods" do
|
242
|
-
data = build_png([0, 0, 8, 0, 1, 0, 0, 4])
|
243
|
-
exp = assert_raises(HexaPDF::Error) { @loader.load(@doc, StringIO.new(data)) }
|
244
|
-
assert_match(/compression method/, exp.message)
|
245
|
-
end
|
246
|
-
|
247
|
-
it "fails for unsupported PNG filter methods" do
|
248
|
-
data = build_png([0, 0, 8, 0, 0, 1, 0, 4])
|
249
|
-
exp = assert_raises(HexaPDF::Error) { @loader.load(@doc, StringIO.new(data)) }
|
250
|
-
assert_match(/filter method/, exp.message)
|
251
|
-
end
|
252
|
-
|
253
|
-
it "fails for unsupported PNG interlace methods" do
|
254
|
-
data = build_png([0, 0, 8, 0, 0, 0, 1, 4])
|
255
|
-
exp = assert_raises(HexaPDF::Error) { @loader.load(@doc, StringIO.new(data)) }
|
256
|
-
assert_match(/interlace method/, exp.message)
|
257
|
-
end
|
258
|
-
end
|
259
|
-
end
|
@@ -1,152 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative '../content/common'
|
5
|
-
require 'hexapdf/document'
|
6
|
-
require 'hexapdf/layout/box'
|
7
|
-
|
8
|
-
describe HexaPDF::Layout::Box do
|
9
|
-
def create_box(**args, &block)
|
10
|
-
HexaPDF::Layout::Box.new(**args, &block)
|
11
|
-
end
|
12
|
-
|
13
|
-
describe "::create" do
|
14
|
-
it "passes the block on to #initialize" do
|
15
|
-
block = proc {}
|
16
|
-
box = HexaPDF::Layout::Box.create(&block)
|
17
|
-
assert_same(block, box.instance_eval { @draw_block })
|
18
|
-
end
|
19
|
-
|
20
|
-
it "allows specifying style options" do
|
21
|
-
box = HexaPDF::Layout::Box.create(background_color: 20)
|
22
|
-
assert_equal(20, box.style.background_color)
|
23
|
-
end
|
24
|
-
|
25
|
-
it "takes content width and height" do
|
26
|
-
box = HexaPDF::Layout::Box.create(width: 100, height: 200, content_box: true,
|
27
|
-
padding: [10, 8, 6, 4],
|
28
|
-
border: {width: [10, 8, 6, 4]})
|
29
|
-
assert_equal(100, box.content_width)
|
30
|
-
assert_equal(200, box.content_height)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
|
34
|
-
describe "initialize" do
|
35
|
-
it "takes box width and height" do
|
36
|
-
box = create_box(width: 100, height: 200)
|
37
|
-
assert_equal(100, box.width)
|
38
|
-
assert_equal(200, box.height)
|
39
|
-
end
|
40
|
-
|
41
|
-
it "allows passing a Style object or a hash" do
|
42
|
-
box = create_box(style: {padding: 20})
|
43
|
-
assert_equal(20, box.style.padding.top)
|
44
|
-
|
45
|
-
box = create_box(style: HexaPDF::Layout::Style.new(padding: 20))
|
46
|
-
assert_equal(20, box.style.padding.top)
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
describe "fit" do
|
51
|
-
before do
|
52
|
-
@frame = Object.new
|
53
|
-
end
|
54
|
-
|
55
|
-
it "fits a fixed sized box" do
|
56
|
-
box = create_box(width: 50, height: 50)
|
57
|
-
assert(box.fit(100, 100, @frame))
|
58
|
-
assert_equal(50, box.width)
|
59
|
-
assert_equal(50, box.height)
|
60
|
-
end
|
61
|
-
|
62
|
-
it "uses the maximum available width" do
|
63
|
-
box = create_box(height: 50)
|
64
|
-
assert(box.fit(100, 100, @frame))
|
65
|
-
assert_equal(100, box.width)
|
66
|
-
assert_equal(50, box.height)
|
67
|
-
end
|
68
|
-
|
69
|
-
it "uses the maximum available height" do
|
70
|
-
box = create_box(width: 50)
|
71
|
-
assert(box.fit(100, 100, @frame))
|
72
|
-
assert_equal(50, box.width)
|
73
|
-
assert_equal(100, box.height)
|
74
|
-
end
|
75
|
-
|
76
|
-
it "returns false if the box doesn't fit" do
|
77
|
-
box = create_box(width: 101)
|
78
|
-
refute(box.fit(100, 100, @frame))
|
79
|
-
end
|
80
|
-
end
|
81
|
-
|
82
|
-
it "can't be split into two parts" do
|
83
|
-
box = create_box(width: 100, height: 100)
|
84
|
-
assert_equal([nil, box], box.split(50, 50, nil))
|
85
|
-
end
|
86
|
-
|
87
|
-
describe "draw" do
|
88
|
-
it "draws the box onto the canvas" do
|
89
|
-
box = create_box(width: 150, height: 130) do |canvas, _|
|
90
|
-
canvas.line_width(15)
|
91
|
-
end
|
92
|
-
box.style.background_color = 0.5
|
93
|
-
box.style.border(width: 5)
|
94
|
-
box.style.padding([10, 20])
|
95
|
-
box.style.underlays.add {|canvas, _| canvas.line_width(10) }
|
96
|
-
box.style.overlays.add {|canvas, _| canvas.line_width(20) }
|
97
|
-
|
98
|
-
@canvas = HexaPDF::Document.new.pages.add.canvas
|
99
|
-
box.draw(@canvas, 5, 5)
|
100
|
-
assert_operators(@canvas.contents, [[:save_graphics_state],
|
101
|
-
[:set_device_gray_non_stroking_color, [0.5]],
|
102
|
-
[:append_rectangle, [5, 5, 150, 130]],
|
103
|
-
[:fill_path_non_zero],
|
104
|
-
[:restore_graphics_state],
|
105
|
-
[:save_graphics_state],
|
106
|
-
[:concatenate_matrix, [1, 0, 0, 1, 5, 5]],
|
107
|
-
[:save_graphics_state],
|
108
|
-
[:set_line_width, [10]],
|
109
|
-
[:restore_graphics_state],
|
110
|
-
[:restore_graphics_state],
|
111
|
-
[:save_graphics_state],
|
112
|
-
[:set_line_width, [5]],
|
113
|
-
[:append_rectangle, [5, 5, 150, 130]],
|
114
|
-
[:clip_path_non_zero], [:end_path],
|
115
|
-
[:append_rectangle, [7.5, 7.5, 145, 125]],
|
116
|
-
[:stroke_path],
|
117
|
-
[:restore_graphics_state],
|
118
|
-
[:save_graphics_state],
|
119
|
-
[:concatenate_matrix, [1, 0, 0, 1, 30, 20]],
|
120
|
-
[:set_line_width, [15]],
|
121
|
-
[:restore_graphics_state],
|
122
|
-
[:save_graphics_state],
|
123
|
-
[:concatenate_matrix, [1, 0, 0, 1, 5, 5]],
|
124
|
-
[:save_graphics_state],
|
125
|
-
[:set_line_width, [20]],
|
126
|
-
[:restore_graphics_state],
|
127
|
-
[:restore_graphics_state]])
|
128
|
-
end
|
129
|
-
|
130
|
-
it "draws nothing onto the canvas if the box is empty" do
|
131
|
-
@canvas = HexaPDF::Document.new.pages.add.canvas
|
132
|
-
box = create_box
|
133
|
-
box.draw(@canvas, 5, 5)
|
134
|
-
assert_operators(@canvas.contents, [])
|
135
|
-
refute(box.style.background_color?)
|
136
|
-
refute(box.style.underlays?)
|
137
|
-
refute(box.style.border?)
|
138
|
-
refute(box.style.overlays?)
|
139
|
-
end
|
140
|
-
end
|
141
|
-
|
142
|
-
describe "empty?" do
|
143
|
-
it "is only empty when no drawing operation is specified" do
|
144
|
-
assert(create_box.empty?)
|
145
|
-
refute(create_box {}.empty?)
|
146
|
-
refute(create_box(style: {background_color: [5]}).empty?)
|
147
|
-
refute(create_box(style: {border: {width: 1}}).empty?)
|
148
|
-
refute(create_box(style: {underlays: [proc {}]}).empty?)
|
149
|
-
refute(create_box(style: {overlays: [proc {}]}).empty?)
|
150
|
-
end
|
151
|
-
end
|
152
|
-
end
|