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,56 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative 'common'
|
5
|
-
require 'hexapdf/font/true_type/table/head'
|
6
|
-
|
7
|
-
describe HexaPDF::Font::TrueType::Table::Head do
|
8
|
-
before do
|
9
|
-
data = [1, 0, 2, 6554, 0, 42, 0x5f0f, 0x3CF5, 3, 64].pack('n*')
|
10
|
-
@time = Time.new(2016, 05, 01)
|
11
|
-
data << ([(@time - HexaPDF::Font::TrueType::Table::TIME_EPOCH).to_i] * 2).pack('q>*')
|
12
|
-
data << [-132, -152, 3423, 4231, 3, 9, -2, 0, 0].pack('s>4n2s>3')
|
13
|
-
set_up_stub_true_type_font(data)
|
14
|
-
end
|
15
|
-
|
16
|
-
describe "initialize" do
|
17
|
-
it "reads the data from the associated file" do
|
18
|
-
table = create_table(:Head)
|
19
|
-
assert_equal('1.0', sprintf('%1.1f', table.version))
|
20
|
-
assert_equal('2.1', sprintf('%1.1f', table.font_revision))
|
21
|
-
assert_equal(42, table.checksum_adjustment)
|
22
|
-
assert_equal(3, table.flags)
|
23
|
-
assert_equal(64, table.units_per_em)
|
24
|
-
assert_equal(@time, table.created)
|
25
|
-
assert_equal(@time, table.modified)
|
26
|
-
assert_equal([-132, -152, 3423, 4231], table.bbox)
|
27
|
-
assert_equal(3, table.mac_style)
|
28
|
-
assert_equal(9, table.smallest_readable_size)
|
29
|
-
assert_equal(-2, table.font_direction_hint)
|
30
|
-
assert_equal(0, table.index_to_loc_format)
|
31
|
-
end
|
32
|
-
|
33
|
-
it "raises an error if the magic number is false when reading from a file" do
|
34
|
-
@font.io.string[12, 1] = '\x5e'
|
35
|
-
assert_raises(HexaPDF::Error) { create_table(:Head) }
|
36
|
-
end
|
37
|
-
|
38
|
-
it "raises an error if an invalid glyph format is specified when reading from a file" do
|
39
|
-
@font.io.string[-1] = '\x5e'
|
40
|
-
assert_raises(HexaPDF::Error) { create_table(:Head) }
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
describe "checksum_valid?" do
|
45
|
-
it "checks whether an entry's checksum is valid" do
|
46
|
-
data = 254.chr * 12 + # fields before checksum field
|
47
|
-
[0x5F0F3CF5].pack('N') + # checksum field
|
48
|
-
254.chr * 4 +
|
49
|
-
0.chr * 4 + 254.chr * 4 + 0.chr * 4 + 254.chr * 4 + # date fields
|
50
|
-
254.chr * 16 + 0.chr * 4
|
51
|
-
@entry.checksum = (0xfefefefe * 9 + 0x5F0F3CF5) % 2**32
|
52
|
-
table = create_table(:Head, data)
|
53
|
-
assert(table.checksum_valid?)
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
@@ -1,26 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative 'common'
|
5
|
-
require 'hexapdf/font/true_type/table/hhea'
|
6
|
-
|
7
|
-
describe HexaPDF::Font::TrueType::Table::Hhea do
|
8
|
-
it "reads the data from the associated file" do
|
9
|
-
data = [1, 0, 10, 11, 12, 100, 101, 102, 115, 1, 0, 0, 0, 0, 0, 0, 0, 10].pack('n2s>3ns>11n')
|
10
|
-
set_up_stub_true_type_font(data)
|
11
|
-
table = create_table(:Hhea)
|
12
|
-
|
13
|
-
assert_equal(1, table.version)
|
14
|
-
assert_equal(10, table.ascent)
|
15
|
-
assert_equal(11, table.descent)
|
16
|
-
assert_equal(12, table.line_gap)
|
17
|
-
assert_equal(100, table.advance_width_max)
|
18
|
-
assert_equal(101, table.min_left_side_bearing)
|
19
|
-
assert_equal(102, table.min_right_side_bearing)
|
20
|
-
assert_equal(115, table.x_max_extent)
|
21
|
-
assert_equal(1, table.caret_slope_rise)
|
22
|
-
assert_equal(0, table.caret_slope_run)
|
23
|
-
assert_equal(0, table.caret_offset)
|
24
|
-
assert_equal(10, table.num_of_long_hor_metrics)
|
25
|
-
end
|
26
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative 'common'
|
5
|
-
require 'hexapdf/font/true_type/table/hhea'
|
6
|
-
require 'hexapdf/font/true_type/table/hmtx'
|
7
|
-
|
8
|
-
describe HexaPDF::Font::TrueType::Table::Hmtx do
|
9
|
-
before do
|
10
|
-
data = [1, -2, 3, -4, 5, -6].pack('ns>ns>s>2')
|
11
|
-
set_up_stub_true_type_font(data)
|
12
|
-
hhea = Object.new
|
13
|
-
hhea.define_singleton_method(:num_of_long_hor_metrics) { 2 }
|
14
|
-
@font.define_singleton_method(:[]) {|_arg| hhea }
|
15
|
-
end
|
16
|
-
|
17
|
-
describe "initialize" do
|
18
|
-
it "reads the data from the associated file" do
|
19
|
-
table = create_table(:Hmtx)
|
20
|
-
assert_equal(3, table[2].advance_width)
|
21
|
-
assert_equal(5, table[2].left_side_bearing)
|
22
|
-
assert_equal(3, table[3].advance_width)
|
23
|
-
assert_equal(-6, table[3].left_side_bearing)
|
24
|
-
assert_equal(1, table[0].advance_width)
|
25
|
-
assert_equal(-2, table[0].left_side_bearing)
|
26
|
-
assert_equal(3, table[1].advance_width)
|
27
|
-
assert_equal(-4, table[1].left_side_bearing)
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
@@ -1,61 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative 'common'
|
5
|
-
require 'hexapdf/font/true_type/table/kern'
|
6
|
-
|
7
|
-
describe HexaPDF::Font::TrueType::Table::Kern do
|
8
|
-
describe "table format 0" do
|
9
|
-
before do
|
10
|
-
data = [0, 2].pack('n2')
|
11
|
-
data << [0, 6, 0x101].pack('n3')
|
12
|
-
data << [0, 6 + 8 + 24, 0x1].pack('n3')
|
13
|
-
data << [4, 0, 0, 0, 1, 2, 10, 2, 3, -30, 3, 4, 32767, 4, 5, -32768].pack('n4n2s>n2s>n2s>n2s>')
|
14
|
-
set_up_stub_true_type_font(data)
|
15
|
-
end
|
16
|
-
|
17
|
-
it "reads the data from the associated file" do
|
18
|
-
table = create_table(:Kern)
|
19
|
-
assert_equal(0, table.version)
|
20
|
-
assert_equal(1, table.subtables.length)
|
21
|
-
|
22
|
-
subtable = table.horizontal_kerning_subtable
|
23
|
-
assert(subtable.horizontal?)
|
24
|
-
refute(subtable.minimum_values?)
|
25
|
-
refute(subtable.cross_stream?)
|
26
|
-
assert_equal(10, subtable.kern(1, 2))
|
27
|
-
assert_equal(-30, subtable.kern(2, 3))
|
28
|
-
assert_equal(32767, subtable.kern(3, 4))
|
29
|
-
assert_equal(-32768, subtable.kern(4, 5))
|
30
|
-
assert_nil(subtable.kern(1, 3))
|
31
|
-
assert_nil(subtable.kern(6, 3))
|
32
|
-
end
|
33
|
-
|
34
|
-
it "raises an error for unknown formats if configured" do
|
35
|
-
@font.config['font.true_type.unknown_format'] = :raise
|
36
|
-
assert_raises(HexaPDF::Error) { create_table(:Kern) }
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
describe "table format 1" do
|
41
|
-
before do
|
42
|
-
data = [1, 0, 2].pack('n2N')
|
43
|
-
data << [8 + 8, 0xC001, 0, 0, 0, 0, 0].pack('Nn6')
|
44
|
-
data << [8 + 8 + 6, 0xC000, 0].pack('Nnn')
|
45
|
-
data << [1, 0, 0, 0, 1, 2, 10].pack('n4n2s>')
|
46
|
-
set_up_stub_true_type_font(data)
|
47
|
-
end
|
48
|
-
|
49
|
-
it "reads the data from the associated file" do
|
50
|
-
table = create_table(:Kern)
|
51
|
-
assert_equal(1, table.version)
|
52
|
-
assert_equal(1, table.subtables.length)
|
53
|
-
|
54
|
-
subtable = table.subtables.first
|
55
|
-
refute(subtable.horizontal?)
|
56
|
-
refute(subtable.minimum_values?)
|
57
|
-
assert(subtable.cross_stream?)
|
58
|
-
assert_equal(10, subtable.kern(1, 2))
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative 'common'
|
5
|
-
require 'hexapdf/font/true_type/table/head'
|
6
|
-
require 'hexapdf/font/true_type/table/loca'
|
7
|
-
|
8
|
-
describe HexaPDF::Font::TrueType::Table::Loca do
|
9
|
-
before do
|
10
|
-
set_up_stub_true_type_font
|
11
|
-
head = Object.new
|
12
|
-
head.define_singleton_method(:index_to_loc_format) { 0 }
|
13
|
-
@font.define_singleton_method(:[]) {|_arg| head }
|
14
|
-
end
|
15
|
-
|
16
|
-
describe "initialize" do
|
17
|
-
it "reads the data in short format from the associated file" do
|
18
|
-
table = create_table(:Loca, [0, 10, 30, 50, 90].pack('n*'))
|
19
|
-
assert_equal([0, 20, 60, 100, 180], table.offsets)
|
20
|
-
assert_equal(0, table.offset(0))
|
21
|
-
assert_equal(100, table.offset(3))
|
22
|
-
assert_equal(20, table.length(0))
|
23
|
-
assert_equal(80, table.length(3))
|
24
|
-
end
|
25
|
-
|
26
|
-
it "reads the data in long format from the associated file" do
|
27
|
-
@font[:head].singleton_class.send(:remove_method, :index_to_loc_format)
|
28
|
-
@font[:head].define_singleton_method(:index_to_loc_format) { 1 }
|
29
|
-
table = create_table(:Loca, [0, 10, 30, 50, 90].pack('N*'))
|
30
|
-
assert_equal([0, 10, 30, 50, 90], table.offsets)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
@@ -1,50 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative 'common'
|
5
|
-
require 'hexapdf/font/true_type/table/maxp'
|
6
|
-
|
7
|
-
describe HexaPDF::Font::TrueType::Table::Maxp do
|
8
|
-
before do
|
9
|
-
data = [1, 0, 10, 11, 12, 13, 14, 2, 15, 16, 17, 18, 19, 20, 21, 22].pack('n*')
|
10
|
-
set_up_stub_true_type_font(data)
|
11
|
-
end
|
12
|
-
|
13
|
-
describe "initialize" do
|
14
|
-
it "reads the version 1.0 data from the associated file" do
|
15
|
-
table = create_table(:Maxp)
|
16
|
-
assert_equal(1, table.version)
|
17
|
-
assert_equal(10, table.num_glyphs)
|
18
|
-
assert_equal(11, table.max_points)
|
19
|
-
assert_equal(12, table.max_contours)
|
20
|
-
assert_equal(13, table.max_component_points)
|
21
|
-
assert_equal(14, table.max_component_contours)
|
22
|
-
assert_equal(15, table.max_twilight_points)
|
23
|
-
assert_equal(16, table.max_storage)
|
24
|
-
assert_equal(17, table.max_function_defs)
|
25
|
-
assert_equal(18, table.max_instruction_defs)
|
26
|
-
assert_equal(19, table.max_stack_elements)
|
27
|
-
assert_equal(20, table.max_size_of_instructions)
|
28
|
-
assert_equal(21, table.max_component_elements)
|
29
|
-
assert_equal(22, table.max_component_depth)
|
30
|
-
end
|
31
|
-
|
32
|
-
it "reads the version 0.5 data from the associated file" do
|
33
|
-
table = create_table(:Maxp, [0, 0x5000, 10].pack('n*'))
|
34
|
-
assert_equal(0.3125, table.version)
|
35
|
-
assert_equal(10, table.num_glyphs)
|
36
|
-
assert_nil(table.max_points)
|
37
|
-
assert_nil(table.max_contours)
|
38
|
-
assert_nil(table.max_component_points)
|
39
|
-
assert_nil(table.max_component_contours)
|
40
|
-
assert_nil(table.max_twilight_points)
|
41
|
-
assert_nil(table.max_storage)
|
42
|
-
assert_nil(table.max_function_defs)
|
43
|
-
assert_nil(table.max_instruction_defs)
|
44
|
-
assert_nil(table.max_stack_elements)
|
45
|
-
assert_nil(table.max_size_of_instructions)
|
46
|
-
assert_nil(table.max_component_elements)
|
47
|
-
assert_nil(table.max_component_depth)
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
@@ -1,76 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative 'common'
|
5
|
-
require 'hexapdf/font/true_type/table/name'
|
6
|
-
|
7
|
-
describe HexaPDF::Font::TrueType::Table::Name do
|
8
|
-
before do
|
9
|
-
data = [0, 3, 42].pack('n3') << \
|
10
|
-
[1, 0, 0, 0, 4, 0].pack('n6') << \
|
11
|
-
[0, 3, 1, 0, 8, 4].pack('n6') << \
|
12
|
-
[3, 1, 1033, 1, 14, 12].pack('n6') << \
|
13
|
-
'hexa'.encode('MACROMAN').b << \
|
14
|
-
'hexa'.encode('UTF-16BE').b <<
|
15
|
-
'hexapdf'.encode('UTF-16BE').b
|
16
|
-
set_up_stub_true_type_font(data)
|
17
|
-
end
|
18
|
-
|
19
|
-
describe "initialize" do
|
20
|
-
it "reads the data in format 0 from the associated file" do
|
21
|
-
table = create_table(:Name)
|
22
|
-
assert_equal(0, table.format)
|
23
|
-
assert_equal({}, table.language_tags)
|
24
|
-
assert_equal('hexa', table[:copyright][0])
|
25
|
-
assert_equal(1, table[:copyright][0].platform_id)
|
26
|
-
assert_equal(0, table[:copyright][0].encoding_id)
|
27
|
-
assert_equal(0, table[:copyright][0].language_id)
|
28
|
-
assert_equal('hexa', table[:copyright][1])
|
29
|
-
assert_equal(0, table[:copyright][1].platform_id)
|
30
|
-
assert_equal(3, table[:copyright][1].encoding_id)
|
31
|
-
assert_equal(1, table[:copyright][1].language_id)
|
32
|
-
assert_equal('hexapdf', table[:font_family][0])
|
33
|
-
assert_equal(3, table[:font_family][0].platform_id)
|
34
|
-
assert_equal(1, table[:font_family][0].encoding_id)
|
35
|
-
assert_equal(1033, table[:font_family][0].language_id)
|
36
|
-
|
37
|
-
assert_equal(table[0][0], table[0].preferred_record)
|
38
|
-
assert_equal(table[:font_family][0], table[:font_family].preferred_record)
|
39
|
-
end
|
40
|
-
|
41
|
-
it "reads the data in format 1 from the associated file" do
|
42
|
-
@font.io.string[0, 6] = [1, 3, 52].pack('n3')
|
43
|
-
@font.io.string[42, 0] = [2, 4, 26, 4, 30].pack('n*')
|
44
|
-
@font.io.string << 'ende'.encode('UTF-16BE').b
|
45
|
-
table = create_table(:Name)
|
46
|
-
assert_equal(1, table.format)
|
47
|
-
assert_equal({0x8000 => 'en', 0x8001 => 'de'}, table.language_tags)
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
describe "NameRecord" do
|
52
|
-
before do
|
53
|
-
@table = create_table(:Name)
|
54
|
-
end
|
55
|
-
|
56
|
-
describe "platform?" do
|
57
|
-
it "returns the correct value" do
|
58
|
-
assert(@table[:copyright][0].platform?(:macintosh))
|
59
|
-
assert(@table[:copyright][1].platform?(:unicode))
|
60
|
-
assert(@table[:font_family][0].platform?(:microsoft))
|
61
|
-
end
|
62
|
-
|
63
|
-
it "raises an error when called with an unknown identifier" do
|
64
|
-
assert_raises(ArgumentError) { @table[:copyright][0].platform?(:testing) }
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
describe "preferred?" do
|
69
|
-
it "returns true for names in US English that had been converted to UTF-8" do
|
70
|
-
assert(@table[:copyright][0].preferred?)
|
71
|
-
refute(@table[:copyright][1].preferred?)
|
72
|
-
assert(@table[:font_family][0].preferred?)
|
73
|
-
end
|
74
|
-
end
|
75
|
-
end
|
76
|
-
end
|
@@ -1,55 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative 'common'
|
5
|
-
require 'hexapdf/font/true_type/table/os2'
|
6
|
-
|
7
|
-
describe HexaPDF::Font::TrueType::Table::OS2 do
|
8
|
-
before do
|
9
|
-
data = [5, -1, 2, 3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15,
|
10
|
-
'PANOSPANOS', 16, 17, 'VEND', 16, 17, 18, -19, -20, -21, 22, 23, 24, -25, -26,
|
11
|
-
27, 28, 29, 30, 31].pack('ns>n2s>12a10Q>2a4n3s>3n2Q>s>2n5')
|
12
|
-
set_up_stub_true_type_font(data)
|
13
|
-
end
|
14
|
-
|
15
|
-
describe "initialize" do
|
16
|
-
it "reads the data from the associated file" do
|
17
|
-
table = create_table(:OS2)
|
18
|
-
assert_equal(5, table.version)
|
19
|
-
assert_equal(-1, table.x_avg_char_width)
|
20
|
-
assert_equal(200, table.weight_class)
|
21
|
-
assert_equal(3, table.width_class)
|
22
|
-
assert_equal(-4, table.type)
|
23
|
-
assert_equal(-5, table.subscript_x_size)
|
24
|
-
assert_equal(-6, table.subscript_y_size)
|
25
|
-
assert_equal(-7, table.subscript_x_offset)
|
26
|
-
assert_equal(-8, table.subscript_y_offset)
|
27
|
-
assert_equal(-9, table.superscript_x_size)
|
28
|
-
assert_equal(-10, table.superscript_y_size)
|
29
|
-
assert_equal(-11, table.superscript_x_offset)
|
30
|
-
assert_equal(-12, table.superscript_y_offset)
|
31
|
-
assert_equal(-13, table.strikeout_size)
|
32
|
-
assert_equal(-14, table.strikeout_position)
|
33
|
-
assert_equal(-15, table.family_class)
|
34
|
-
assert_equal('PANOSPANOS'.b, table.panose)
|
35
|
-
assert_equal(16 << 64 & 17, table.unicode_range)
|
36
|
-
assert_equal('VEND'.b, table.vendor_id)
|
37
|
-
assert_equal(16, table.selection)
|
38
|
-
assert_equal(17, table.first_char_index)
|
39
|
-
assert_equal(18, table.last_char_index)
|
40
|
-
assert_equal(-19, table.typo_ascender)
|
41
|
-
assert_equal(-20, table.typo_descender)
|
42
|
-
assert_equal(-21, table.typo_line_gap)
|
43
|
-
assert_equal(22, table.win_ascent)
|
44
|
-
assert_equal(23, table.win_descent)
|
45
|
-
assert_equal(24, table.code_page_range)
|
46
|
-
assert_equal(-25, table.x_height)
|
47
|
-
assert_equal(-26, table.cap_height)
|
48
|
-
assert_equal(27, table.default_char)
|
49
|
-
assert_equal(28, table.break_char)
|
50
|
-
assert_equal(29, table.max_context)
|
51
|
-
assert_equal(30, table.lower_point_size)
|
52
|
-
assert_equal(31, table.upper_point_size)
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
@@ -1,78 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require_relative 'common'
|
5
|
-
require 'hexapdf/font/true_type/table/post'
|
6
|
-
|
7
|
-
describe HexaPDF::Font::TrueType::Table::Post do
|
8
|
-
before do
|
9
|
-
data = [1, 0, 1, 0, -142, 15, 0, 0, 0, 0, 0].pack('n4s>2N5')
|
10
|
-
set_up_stub_true_type_font(data)
|
11
|
-
end
|
12
|
-
|
13
|
-
describe "initialize" do
|
14
|
-
it "reads the format 1 data from the associated file" do
|
15
|
-
table = create_table(:Post)
|
16
|
-
assert_equal(1, table.format)
|
17
|
-
assert_equal(1, table.italic_angle)
|
18
|
-
assert_equal(-142, table.underline_position)
|
19
|
-
assert_equal(15, table.underline_thickness)
|
20
|
-
assert_equal(0, table.is_fixed_pitch)
|
21
|
-
refute(table.is_fixed_pitch?)
|
22
|
-
assert_equal(0, table.min_mem_type42)
|
23
|
-
assert_equal(0, table.max_mem_type42)
|
24
|
-
assert_equal(0, table.min_mem_type1)
|
25
|
-
assert_equal(0, table.max_mem_type1)
|
26
|
-
assert_equal('.notdef', table[0])
|
27
|
-
assert_equal('A', table[36])
|
28
|
-
assert_equal('Delta', table[168])
|
29
|
-
assert_equal('.notdef', table[1000])
|
30
|
-
end
|
31
|
-
|
32
|
-
it "reads the format 2 data from the associated file" do
|
33
|
-
@font.io.string[0, 2] = [2].pack('n')
|
34
|
-
@font.io.string << ([260, 0] + (1..257).to_a.reverse + [258, 259]).pack('n*')
|
35
|
-
@font.io.string << [4, "hexa", 3, "pdf"].pack('CA4CA3')
|
36
|
-
table = create_table(:Post, @font.io.string)
|
37
|
-
assert_equal(2, table.format)
|
38
|
-
assert_equal('.notdef', table[0])
|
39
|
-
assert_equal('A', table[258 - 36])
|
40
|
-
assert_equal('Delta', table[258 - 168])
|
41
|
-
assert_equal('hexa', table[258])
|
42
|
-
assert_equal('pdf', table[259])
|
43
|
-
assert_equal('.notdef', table[1000])
|
44
|
-
end
|
45
|
-
|
46
|
-
it "reads the format 3 data from the associated file" do
|
47
|
-
@font.io.string[0, 2] = [3].pack('n')
|
48
|
-
table = create_table(:Post, @font.io.string)
|
49
|
-
assert_equal(3, table.format)
|
50
|
-
assert_equal('.notdef', table[0])
|
51
|
-
assert_equal('.notdef', table[36])
|
52
|
-
assert_equal('.notdef', table[1000])
|
53
|
-
end
|
54
|
-
|
55
|
-
it "reads the format 4 data from the associated file" do
|
56
|
-
@font.io.string[0, 2] = [4].pack('n')
|
57
|
-
@font.io.string << [0x1234, 0x5678].pack('n*')
|
58
|
-
table = create_table(:Post, @font.io.string)
|
59
|
-
assert_equal(4, table.format)
|
60
|
-
assert_equal(0x1234, table[0])
|
61
|
-
assert_equal(0x5678, table[1])
|
62
|
-
assert_equal(0xFFFF, table[2])
|
63
|
-
assert_equal(0xFFFF, table[36])
|
64
|
-
assert_equal(0xFFFF, table[1_000_000])
|
65
|
-
end
|
66
|
-
|
67
|
-
it "handles unsupported formats" do
|
68
|
-
@font.io.string[0, 2] = [5].pack('n')
|
69
|
-
|
70
|
-
@font.config['font.true_type.unknown_format'] = :ignore
|
71
|
-
table = create_table(:Post, @font.io.string)
|
72
|
-
assert_equal('.notdef', table[0])
|
73
|
-
|
74
|
-
@font.config['font.true_type.unknown_format'] = :raise
|
75
|
-
assert_raises(HexaPDF::Error) { create_table(:Post)[0] }
|
76
|
-
end
|
77
|
-
end
|
78
|
-
end
|
@@ -1,42 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'stringio'
|
4
|
-
require 'test_helper'
|
5
|
-
require 'hexapdf/font/true_type'
|
6
|
-
require 'hexapdf/font/true_type/builder'
|
7
|
-
|
8
|
-
describe HexaPDF::Font::TrueType::Builder do
|
9
|
-
before do
|
10
|
-
font_file = File.join(TEST_DATA_DIR, "fonts", "Ubuntu-Title.ttf")
|
11
|
-
@font = HexaPDF::Font::TrueType::Font.new(File.open(font_file))
|
12
|
-
end
|
13
|
-
|
14
|
-
after do
|
15
|
-
@font.io.close
|
16
|
-
end
|
17
|
-
|
18
|
-
it "builds the font file" do
|
19
|
-
tables = {
|
20
|
-
"loca" => @font[:loca].raw_data << "0",
|
21
|
-
"head" => @font[:head].raw_data,
|
22
|
-
"glyf" => @font[:glyf].raw_data,
|
23
|
-
"maxp" => @font[:maxp].raw_data,
|
24
|
-
}
|
25
|
-
font_data = HexaPDF::Font::TrueType::Builder.build(tables)
|
26
|
-
built_font = HexaPDF::Font::TrueType::Font.new(StringIO.new(font_data))
|
27
|
-
|
28
|
-
assert(built_font[:head].checksum_valid?)
|
29
|
-
assert_equal(@font[:glyf].raw_data, built_font[:glyf].raw_data)
|
30
|
-
assert(built_font.directory.entry('glyf').offset % 4 == 0)
|
31
|
-
assert(built_font[:glyf].checksum_valid?)
|
32
|
-
assert_equal(@font[:loca].raw_data << "0", built_font[:loca].raw_data)
|
33
|
-
assert(built_font[:loca].checksum_valid?)
|
34
|
-
assert(built_font.directory.entry('loca').offset % 4 == 0)
|
35
|
-
assert_equal(@font[:maxp].raw_data, built_font[:maxp].raw_data)
|
36
|
-
assert(built_font[:maxp].checksum_valid?)
|
37
|
-
assert(built_font.directory.entry('maxp').offset % 4 == 0)
|
38
|
-
|
39
|
-
tables = built_font.directory.instance_variable_get(:@tables)
|
40
|
-
assert_equal(tables.keys.sort, tables.keys)
|
41
|
-
end
|
42
|
-
end
|
@@ -1,116 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
require 'stringio'
|
5
|
-
require 'hexapdf/font/true_type/font'
|
6
|
-
require_relative 'common'
|
7
|
-
|
8
|
-
describe HexaPDF::Font::TrueType::Font do
|
9
|
-
before do
|
10
|
-
@io = StringIO.new("TEST\x00\x01\x00\x00\x00\x00\x00\x00" \
|
11
|
-
"TEST----\x00\x00\x00\x1C\x00\x00\x00\x05ENTRY".b)
|
12
|
-
@font = HexaPDF::Font::TrueType::Font.new(@io)
|
13
|
-
@font.config['font.true_type.table_mapping'][:TEST] = TestHelper::TrueTypeTestTable.name
|
14
|
-
end
|
15
|
-
|
16
|
-
describe "[]" do
|
17
|
-
it "returns a named table" do
|
18
|
-
table = @font[:TEST]
|
19
|
-
assert_equal('ENTRY', table.data)
|
20
|
-
end
|
21
|
-
|
22
|
-
it "always returns the same table instance" do
|
23
|
-
assert_same(@font[:TEST], @font[:TEST])
|
24
|
-
end
|
25
|
-
|
26
|
-
it "returns a generic table if no mapping exists" do
|
27
|
-
@font.config['font.true_type.table_mapping'].delete(:TEST)
|
28
|
-
assert_kind_of(HexaPDF::Font::TrueType::Table, @font[:TEST])
|
29
|
-
end
|
30
|
-
|
31
|
-
it "returns nil if the named table doesn't exist in the file" do
|
32
|
-
assert_nil(@font[:OTHE])
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
describe "getter methods" do
|
37
|
-
before do
|
38
|
-
font_file = File.join(TEST_DATA_DIR, "fonts", "Ubuntu-Title.ttf")
|
39
|
-
@font = HexaPDF::Font::TrueType::Font.new(File.open(font_file))
|
40
|
-
end
|
41
|
-
|
42
|
-
it "returns the postscript name" do
|
43
|
-
assert_equal("Ubuntu-Title", @font.font_name)
|
44
|
-
end
|
45
|
-
|
46
|
-
it "returns the full name" do
|
47
|
-
assert_equal("Ubuntu-Title", @font.full_name)
|
48
|
-
end
|
49
|
-
|
50
|
-
it "returns the family name" do
|
51
|
-
assert_equal("Ubuntu-Title", @font.family_name)
|
52
|
-
end
|
53
|
-
|
54
|
-
it "returns the font's weight" do
|
55
|
-
assert_equal(400, @font.weight)
|
56
|
-
end
|
57
|
-
|
58
|
-
it "returns the font's bounding box" do
|
59
|
-
assert_equal([-35, -187, 876, 801], @font.bounding_box)
|
60
|
-
end
|
61
|
-
|
62
|
-
it "returns the font's cap height" do
|
63
|
-
@font[:'OS/2'].cap_height = 832
|
64
|
-
assert_equal(832, @font.cap_height)
|
65
|
-
end
|
66
|
-
|
67
|
-
it "returns the font's x height" do
|
68
|
-
@font[:'OS/2'].x_height = 642
|
69
|
-
assert_equal(642, @font.x_height)
|
70
|
-
end
|
71
|
-
|
72
|
-
it "returns the font's ascender" do
|
73
|
-
assert_equal(800, @font.ascender)
|
74
|
-
@font[:'OS/2'].typo_ascender = nil
|
75
|
-
assert_equal(801, @font.ascender)
|
76
|
-
end
|
77
|
-
|
78
|
-
it "returns the font's descender" do
|
79
|
-
assert_equal(-200, @font.descender)
|
80
|
-
@font[:'OS/2'].typo_descender = nil
|
81
|
-
assert_equal(-187, @font.descender)
|
82
|
-
end
|
83
|
-
|
84
|
-
it "returns the font's italic angle" do
|
85
|
-
assert_equal(0.0, @font.italic_angle)
|
86
|
-
end
|
87
|
-
|
88
|
-
it "returns the font's dominant vertical stem width" do
|
89
|
-
assert_equal(80, @font.dominant_vertical_stem_width)
|
90
|
-
end
|
91
|
-
|
92
|
-
it "returns the underline position" do
|
93
|
-
assert_equal(-125, @font.underline_position)
|
94
|
-
end
|
95
|
-
|
96
|
-
it "returns the underline thickness" do
|
97
|
-
assert_equal(50, @font.underline_thickness)
|
98
|
-
end
|
99
|
-
|
100
|
-
it "returns the strikeout position" do
|
101
|
-
assert_equal(256, @font.strikeout_position)
|
102
|
-
end
|
103
|
-
|
104
|
-
it "returns the strikeout thickness" do
|
105
|
-
assert_equal(48, @font.strikeout_thickness)
|
106
|
-
end
|
107
|
-
end
|
108
|
-
|
109
|
-
it "is able to return the ID of the missing glyph" do
|
110
|
-
assert_equal(0, @font.missing_glyph_id)
|
111
|
-
end
|
112
|
-
|
113
|
-
it "returns the features available for a font" do
|
114
|
-
assert(@font.features.empty?)
|
115
|
-
end
|
116
|
-
end
|
@@ -1,26 +0,0 @@
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
2
|
-
|
3
|
-
require 'stringio'
|
4
|
-
require 'test_helper'
|
5
|
-
require 'hexapdf/font/true_type'
|
6
|
-
|
7
|
-
describe HexaPDF::Font::TrueType::Optimizer do
|
8
|
-
before do
|
9
|
-
font_file = File.join(TEST_DATA_DIR, "fonts", "Ubuntu-Title.ttf")
|
10
|
-
@font = HexaPDF::Font::TrueType::Font.new(File.open(font_file))
|
11
|
-
end
|
12
|
-
|
13
|
-
after do
|
14
|
-
@font.io.close
|
15
|
-
end
|
16
|
-
|
17
|
-
describe "build_for_pdf" do
|
18
|
-
it "builds a font file that is optimized for use with PDFs" do
|
19
|
-
font_data = HexaPDF::Font::TrueType::Optimizer.build_for_pdf(@font)
|
20
|
-
built_font = HexaPDF::Font::TrueType::Font.new(StringIO.new(font_data))
|
21
|
-
[:FFTM, :GDEF, :GPOS, :GSUB, :name, :post].each do |table|
|
22
|
-
refute(built_font[table])
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|