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
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -50,12 +50,29 @@ module HexaPDF
|
|
50
50
|
# methods on the main Form instance (HexaPDF::Document#acro_form). By using those methods,
|
51
51
|
# everything needed is automatically set up.
|
52
52
|
#
|
53
|
+
# Radio buttons are widgets of a single radio button field. This is also called a radio button
|
54
|
+
# group. Of the radio button group only one radio button (= widget of the radio button field)
|
55
|
+
# may be selected at all times. Each widget must have a different value to be distinguishable;
|
56
|
+
# otherwise the widgets with the same value represent the same thing. Although there is the
|
57
|
+
# +no_toggle_to_off+ field flag, no PDF viewer implements that; one needs to use check boxes
|
58
|
+
# for this feature.
|
59
|
+
#
|
60
|
+
# Check boxes can be toggled on and off. One check box field may have multiple widgets. If
|
61
|
+
# those widgets have the same value, they will all be toggled on or off simultaneously.
|
62
|
+
# Otherwise only one of those widgets will be toggled on while the others are off. In such a
|
63
|
+
# case the check box fields acts like a radio button group, with the additional feature that
|
64
|
+
# no check box may be selected.
|
65
|
+
#
|
53
66
|
# == Type Specific Field Flags
|
54
67
|
#
|
55
68
|
# :no_toggle_to_off:: Only used with radio buttons fields. If this flag is set, one button
|
56
69
|
# needs to be selected at all times. Otherwise, clicking on the selected
|
57
70
|
# button deselects it.
|
58
71
|
#
|
72
|
+
# Note: This deselectiong is not implemented in *any* tested PDF viewer. A
|
73
|
+
# work-around is to use multiple check box widgets with different on
|
74
|
+
# names.
|
75
|
+
#
|
59
76
|
# :radio:: If this flag is set, the field is a set of radio buttons. Otherwise it is a check
|
60
77
|
# box. Additionally, the :pushbutton flag needs to be clear.
|
61
78
|
#
|
@@ -131,8 +148,8 @@ module HexaPDF
|
|
131
148
|
#
|
132
149
|
# Push buttons:: They don't have a value, so +nil+ is always returned.
|
133
150
|
#
|
134
|
-
# Check boxes:: For check boxes that are
|
135
|
-
# Otherwise +
|
151
|
+
# Check boxes:: For check boxes that are checked the value of the specific check box that is
|
152
|
+
# checked is returned. Otherwise +nil+ is returned.
|
136
153
|
#
|
137
154
|
# Radio buttons:: If no radio button is selected, +nil+ is returned. Otherwise the value (a
|
138
155
|
# Symbol) of the specific radio button that is selected is returned.
|
@@ -145,8 +162,11 @@ module HexaPDF
|
|
145
162
|
# Push buttons:: Since push buttons don't store any value, the given value is ignored and
|
146
163
|
# nothing is stored for them (e.g a no-op).
|
147
164
|
#
|
148
|
-
# Check boxes::
|
149
|
-
# +
|
165
|
+
# Check boxes:: Provide +nil+ or +false+ as value to toggle all check box widgets off. If
|
166
|
+
# there is only one possible value, +true+ may be used for checking the box,
|
167
|
+
# i.e. toggling it to the on state. Otherwise provide the value (a Symbol or
|
168
|
+
# an object responding to +#to_sym+) of the check box widget that should be
|
169
|
+
# toggled on.
|
150
170
|
#
|
151
171
|
# Radio buttons:: To turn all radio buttons off, provide +nil+ as value. Otherwise provide
|
152
172
|
# the value (a Symbol or an object responding to +#to_sym+) of a radio
|
@@ -180,20 +200,16 @@ module HexaPDF
|
|
180
200
|
end
|
181
201
|
end
|
182
202
|
|
183
|
-
# Returns the
|
203
|
+
# Returns the array of Symbol values (minus the /Off value) that can be used for the field
|
204
|
+
# value for check boxes or radio buttons.
|
184
205
|
#
|
185
|
-
#
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
# button.
|
193
|
-
def radio_button_values
|
194
|
-
each_widget.map do |widget|
|
195
|
-
widget.appearance_dict&.normal_appearance&.value&.each_key&.find {|key| key != :Off }
|
196
|
-
end.compact
|
206
|
+
# Note that this will only return useful values if there is at least one correctly set-up
|
207
|
+
# widget.
|
208
|
+
def allowed_values
|
209
|
+
(each_widget.each_with_object([]) do |widget, result|
|
210
|
+
keys = widget.appearance_dict&.normal_appearance&.value&.keys
|
211
|
+
result.concat(keys) if keys
|
212
|
+
end - [:Off]).uniq
|
197
213
|
end
|
198
214
|
|
199
215
|
# Creates a widget for the button field.
|
@@ -205,12 +221,14 @@ module HexaPDF
|
|
205
221
|
# the value (a Symbol or an object responding to +#to_sym+) this widget represents. It can
|
206
222
|
# be used with #field_value= to set this specific widget of the radio button set to on.
|
207
223
|
#
|
224
|
+
# The +value+ is optional for check box fields; if not specified, the default of :Yes will
|
225
|
+
# be used.
|
226
|
+
#
|
208
227
|
# See: Field#create_widget, AppearanceGenerator button field methods
|
209
228
|
def create_widget(page, defaults: true, value: nil, **values)
|
210
229
|
super(page, allow_embedded: !radio_button?, **values).tap do |widget|
|
211
|
-
if check_box?
|
212
|
-
|
213
|
-
elsif radio_button?
|
230
|
+
value = :Yes if check_box? && value.nil?
|
231
|
+
if radio_button? || check_box?
|
214
232
|
unless value.respond_to?(:to_sym)
|
215
233
|
raise ArgumentError, "Argument 'value' has to be provided for radio buttons " \
|
216
234
|
"and needs to respond to #to_sym"
|
@@ -266,9 +284,7 @@ module HexaPDF
|
|
266
284
|
def normalized_field_value(key)
|
267
285
|
if push_button?
|
268
286
|
nil
|
269
|
-
|
270
|
-
self[key] == check_box_on_name
|
271
|
-
elsif radio_button?
|
287
|
+
else
|
272
288
|
self[key] == :Off ? nil : self[key]
|
273
289
|
end
|
274
290
|
end
|
@@ -279,11 +295,20 @@ module HexaPDF
|
|
279
295
|
# See #field_value= for details.
|
280
296
|
def normalized_field_value_set(key, value)
|
281
297
|
return if push_button?
|
282
|
-
|
283
|
-
|
284
|
-
elsif value.nil?
|
298
|
+
av = allowed_values
|
299
|
+
self[key] = if value.nil? || value == :Off
|
285
300
|
:Off
|
286
|
-
elsif
|
301
|
+
elsif check_box?
|
302
|
+
if value == false
|
303
|
+
:Off
|
304
|
+
elsif value == true && av.size == 1
|
305
|
+
av[0]
|
306
|
+
elsif av.include?(value.to_sym)
|
307
|
+
value.to_sym
|
308
|
+
else
|
309
|
+
@document.config['acro_form.on_invalid_value'].call(self, value)
|
310
|
+
end
|
311
|
+
elsif av.include?(value.to_sym)
|
287
312
|
value.to_sym
|
288
313
|
else
|
289
314
|
@document.config['acro_form.on_invalid_value'].call(self, value)
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -247,14 +247,33 @@ module HexaPDF
|
|
247
247
|
#
|
248
248
|
# Yields each widget, i.e. visual representation, of this field.
|
249
249
|
#
|
250
|
+
# Widgets can be associated to the field in three ways:
|
251
|
+
#
|
252
|
+
# 1. The widget can be embedded in the field itself.
|
253
|
+
# 2. One or more widgets are defined as children of this field.
|
254
|
+
# 3. Widgets of *another field instance with the same full field name*.
|
255
|
+
#
|
256
|
+
# Because of possibility 3 all fields of the form have to be searched to check whether there
|
257
|
+
# is another field with the same full field name.
|
258
|
+
#
|
250
259
|
# See: HexaPDF::Type::Annotations::Widget
|
251
|
-
def each_widget # :yields: widget
|
260
|
+
def each_widget(direct_only: false, &block) # :yields: widget
|
252
261
|
return to_enum(__method__) unless block_given?
|
262
|
+
|
253
263
|
if embedded_widget?
|
254
264
|
yield(document.wrap(self))
|
255
265
|
elsif terminal_field?
|
256
266
|
self[:Kids]&.each {|kid| yield(document.wrap(kid)) }
|
257
267
|
end
|
268
|
+
|
269
|
+
unless direct_only
|
270
|
+
my_name = full_field_name
|
271
|
+
document.acro_form&.each_field do |field|
|
272
|
+
next if field.full_field_name != my_name || field == self
|
273
|
+
field.each_widget(direct_only: true, &block)
|
274
|
+
end
|
275
|
+
end
|
276
|
+
|
258
277
|
self
|
259
278
|
end
|
260
279
|
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -96,7 +96,7 @@ module HexaPDF
|
|
96
96
|
def find_root_fields
|
97
97
|
result = []
|
98
98
|
document.pages.each do |page|
|
99
|
-
page
|
99
|
+
page.each_annotation do |annot|
|
100
100
|
if !annot.key?(:Parent) && annot.key?(:FT)
|
101
101
|
result << document.wrap(annot, type: :XXAcroFormField, subtype: annot[:FT])
|
102
102
|
elsif annot.key?(:Parent)
|
@@ -157,18 +157,27 @@ module HexaPDF
|
|
157
157
|
# The optional keyword arguments allow setting often used properties of the field:
|
158
158
|
#
|
159
159
|
# +font+::
|
160
|
-
# The font that should be used for the text of the field. If +font_size+
|
161
|
-
# but +font+ isn't, the font Helvetica is used.
|
160
|
+
# The font that should be used for the text of the field. If +font_size+ or
|
161
|
+
# +font_options+ is specified but +font+ isn't, the font Helvetica is used.
|
162
|
+
#
|
163
|
+
# If no font is set on the text field, the default font properties of the AcroForm form
|
164
|
+
# are used. Note that field specific or form specific font properties have to be set.
|
165
|
+
# Otherwise there will be an error when trying to generate a visual representation of
|
166
|
+
# the field value.
|
167
|
+
#
|
168
|
+
# +font_options+::
|
169
|
+
# A hash with font options like :variant that should be used.
|
162
170
|
#
|
163
171
|
# +font_size+::
|
164
|
-
# The font size that should be used. If +font+ is specified but
|
165
|
-
# size defaults to 0 (= auto-sizing).
|
172
|
+
# The font size that should be used. If +font+ or +font_options+ is specified but
|
173
|
+
# +font_size+ isn't, font size defaults to 0 (= auto-sizing).
|
166
174
|
#
|
167
175
|
# +align+::
|
168
176
|
# The alignment of the text, either :left, :center or :right.
|
169
|
-
def create_text_field(name, font: nil, font_size: nil, align: nil)
|
177
|
+
def create_text_field(name, font: nil, font_options: nil, font_size: nil, align: nil)
|
170
178
|
create_field(name, :Tx) do |field|
|
171
|
-
apply_variable_text_properties(field, font: font,
|
179
|
+
apply_variable_text_properties(field, font: font, font_options: font_options,
|
180
|
+
font_size: font_size, align: align)
|
172
181
|
end
|
173
182
|
end
|
174
183
|
|
@@ -179,10 +188,12 @@ module HexaPDF
|
|
179
188
|
#
|
180
189
|
# The optional keyword arguments allow setting often used properties of the field, see
|
181
190
|
# #create_text_field for details.
|
182
|
-
def create_multiline_text_field(name, font: nil,
|
191
|
+
def create_multiline_text_field(name, font: nil, font_options: nil, font_size: nil,
|
192
|
+
align: nil)
|
183
193
|
create_field(name, :Tx) do |field|
|
184
194
|
field.initialize_as_multiline_text_field
|
185
|
-
apply_variable_text_properties(field, font: font,
|
195
|
+
apply_variable_text_properties(field, font: font, font_options: font_options,
|
196
|
+
font_size: font_size, align: align)
|
186
197
|
end
|
187
198
|
end
|
188
199
|
|
@@ -196,10 +207,12 @@ module HexaPDF
|
|
196
207
|
#
|
197
208
|
# The optional keyword arguments allow setting often used properties of the field, see
|
198
209
|
# #create_text_field for details.
|
199
|
-
def create_comb_text_field(name, max_chars:, font: nil,
|
210
|
+
def create_comb_text_field(name, max_chars:, font: nil, font_options: nil, font_size: nil,
|
211
|
+
align: nil)
|
200
212
|
create_field(name, :Tx) do |field|
|
201
213
|
field.initialize_as_comb_text_field
|
202
|
-
apply_variable_text_properties(field, font: font,
|
214
|
+
apply_variable_text_properties(field, font: font, font_options: font_options,
|
215
|
+
font_size: font_size, align: align)
|
203
216
|
field[:MaxLen] = max_chars
|
204
217
|
end
|
205
218
|
end
|
@@ -211,10 +224,11 @@ module HexaPDF
|
|
211
224
|
#
|
212
225
|
# The optional keyword arguments allow setting often used properties of the field, see
|
213
226
|
# #create_text_field for details.
|
214
|
-
def create_file_select_field(name, font: nil, font_size: nil, align: nil)
|
227
|
+
def create_file_select_field(name, font: nil, font_options: nil, font_size: nil, align: nil)
|
215
228
|
create_field(name, :Tx) do |field|
|
216
229
|
field.initialize_as_file_select_field
|
217
|
-
apply_variable_text_properties(field, font: font,
|
230
|
+
apply_variable_text_properties(field, font: font, font_options: font_options,
|
231
|
+
font_size: font_size, align: align)
|
218
232
|
end
|
219
233
|
end
|
220
234
|
|
@@ -225,10 +239,11 @@ module HexaPDF
|
|
225
239
|
#
|
226
240
|
# The optional keyword arguments allow setting often used properties of the field, see
|
227
241
|
# #create_text_field for details.
|
228
|
-
def create_password_field(name, font: nil, font_size: nil, align: nil)
|
242
|
+
def create_password_field(name, font: nil, font_options: nil, font_size: nil, align: nil)
|
229
243
|
create_field(name, :Tx) do |field|
|
230
244
|
field.initialize_as_password_field
|
231
|
-
apply_variable_text_properties(field, font: font,
|
245
|
+
apply_variable_text_properties(field, font: font, font_options: font_options,
|
246
|
+
font_size: font_size, align: align)
|
232
247
|
end
|
233
248
|
end
|
234
249
|
|
@@ -262,15 +277,16 @@ module HexaPDF
|
|
262
277
|
# If set to +true+, the combo box allows entering an arbitrary value in addition to
|
263
278
|
# selecting one of the provided option items.
|
264
279
|
#
|
265
|
-
# +font+, +font_size+ and +align+::
|
280
|
+
# +font+, +font_options+, +font_size+ and +align+::
|
266
281
|
# See #create_text_field
|
267
|
-
def create_combo_box(name, option_items: nil, editable: nil, font: nil,
|
268
|
-
align: nil)
|
282
|
+
def create_combo_box(name, option_items: nil, editable: nil, font: nil,
|
283
|
+
font_options: nil, font_size: nil, align: nil)
|
269
284
|
create_field(name, :Ch) do |field|
|
270
285
|
field.initialize_as_combo_box
|
271
286
|
field.option_items = option_items if option_items
|
272
287
|
field.flag(:edit) if editable
|
273
|
-
apply_variable_text_properties(field, font: font,
|
288
|
+
apply_variable_text_properties(field, font: font, font_options: font_options,
|
289
|
+
font_size: font_size, align: align)
|
274
290
|
end
|
275
291
|
end
|
276
292
|
|
@@ -287,15 +303,16 @@ module HexaPDF
|
|
287
303
|
# +multi_select+::
|
288
304
|
# If set to +true+, the list box allows selecting multiple items instead of only one.
|
289
305
|
#
|
290
|
-
# +font+, +font_size+ and +align+::
|
306
|
+
# +font+, +font_options+, +font_size+ and +align+::
|
291
307
|
# See #create_text_field.
|
292
|
-
def create_list_box(name, option_items: nil, multi_select: nil, font: nil,
|
293
|
-
align: nil)
|
308
|
+
def create_list_box(name, option_items: nil, multi_select: nil, font: nil,
|
309
|
+
font_options: nil, font_size: nil, align: nil)
|
294
310
|
create_field(name, :Ch) do |field|
|
295
311
|
field.initialize_as_list_box
|
296
312
|
field.option_items = option_items if option_items
|
297
313
|
field.flag(:multi_select) if multi_select
|
298
|
-
apply_variable_text_properties(field, font: font,
|
314
|
+
apply_variable_text_properties(field, font: font, font_options: font_options,
|
315
|
+
font_size: font_size, align: align)
|
299
316
|
end
|
300
317
|
end
|
301
318
|
|
@@ -402,9 +419,12 @@ module HexaPDF
|
|
402
419
|
end
|
403
420
|
|
404
421
|
# Applies the given variable field properties to the field.
|
405
|
-
def apply_variable_text_properties(field, font: nil,
|
406
|
-
|
407
|
-
|
422
|
+
def apply_variable_text_properties(field, font: nil, font_options: nil, font_size: nil,
|
423
|
+
align: nil)
|
424
|
+
if font || font_options || font_size
|
425
|
+
field.set_default_appearance_string(font: font || 'Helvetica',
|
426
|
+
font_options: font_options || {},
|
427
|
+
font_size: font_size || 0)
|
408
428
|
end
|
409
429
|
field.text_alignment(align) if align
|
410
430
|
end
|
@@ -417,8 +437,7 @@ module HexaPDF
|
|
417
437
|
yield("When the field /DA is present, the field /DR must also be present")
|
418
438
|
return
|
419
439
|
end
|
420
|
-
font_name =
|
421
|
-
HexaPDF::Content::Parser.parse(da) {|obj, params| font_name = params[0] if obj == :Tf }
|
440
|
+
font_name, _ = VariableTextField.parse_appearance_string(da)
|
422
441
|
if font_name && !(self[:DR][:Font] && self[:DR][:Font][font_name])
|
423
442
|
yield("The font specified in /DA is not in the /DR resource dictionary")
|
424
443
|
end
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -165,7 +165,7 @@ module HexaPDF
|
|
165
165
|
if flagged?(:password)
|
166
166
|
raise HexaPDF::Error, "Storing a field value for a password field is not allowed"
|
167
167
|
end
|
168
|
-
str = str.gsub(/[[:space:]]/, ' ') if concrete_field_type == :single_line_text_field
|
168
|
+
str = str.gsub(/[[:space:]]/, ' ') if str && concrete_field_type == :single_line_text_field
|
169
169
|
self[:V] = str
|
170
170
|
update_widgets
|
171
171
|
end
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -61,6 +61,16 @@ module HexaPDF
|
|
61
61
|
|
62
62
|
UNSET_ARG = ::Object.new # :nodoc:
|
63
63
|
|
64
|
+
# Parses the given appearance string. If no block is given, the appearance string is
|
65
|
+
# searched for font name and font size both of which are returend. Otherwise the block is
|
66
|
+
# called with each found content stream operator and has to handle them themselves.
|
67
|
+
def self.parse_appearance_string(appearance_string, &block) # :yield: obj, params
|
68
|
+
font_params = nil
|
69
|
+
block ||= lambda {|obj, params| font_params = params.dup if obj == :Tf }
|
70
|
+
HexaPDF::Content::Parser.parse(appearance_string.sub(/\/\//, '/'), &block)
|
71
|
+
font_params
|
72
|
+
end
|
73
|
+
|
64
74
|
# :call-seq:
|
65
75
|
# field.text_alignment -> alignment
|
66
76
|
# field.text_alignment(alignment) -> field
|
@@ -93,9 +103,12 @@ module HexaPDF
|
|
93
103
|
#
|
94
104
|
# The default argument values are a sane default. If +font_size+ is set to 0, the font size
|
95
105
|
# is calculated using the height/width of the field.
|
96
|
-
|
106
|
+
#
|
107
|
+
# Use the +font_options+ hash to provide font options like :variant, see
|
108
|
+
# HexaPDF::Document::Fonts#add.
|
109
|
+
def set_default_appearance_string(font: 'Helvetica', font_options: {}, font_size: 0)
|
97
110
|
name = document.acro_form(create: true).default_resources.
|
98
|
-
add_font(document.fonts.add(font).pdf_object)
|
111
|
+
add_font(document.fonts.add(font, **font_options).pdf_object)
|
99
112
|
self[:DA] = "0 g /#{name} #{font_size} Tf"
|
100
113
|
end
|
101
114
|
|
@@ -107,12 +120,7 @@ module HexaPDF
|
|
107
120
|
def parse_default_appearance_string
|
108
121
|
da = self[:DA] || (document.acro_form && document.acro_form[:DA])
|
109
122
|
raise HexaPDF::Error, "No default appearance string set" unless da
|
110
|
-
|
111
|
-
font_params = nil
|
112
|
-
HexaPDF::Content::Parser.parse(da) do |obj, params|
|
113
|
-
font_params = params.dup if obj == :Tf
|
114
|
-
end
|
115
|
-
font_params
|
123
|
+
self.class.parse_appearance_string(da)
|
116
124
|
end
|
117
125
|
|
118
126
|
end
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
data/lib/hexapdf/type/action.rb
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
data/lib/hexapdf/type/actions.rb
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -308,7 +308,7 @@ module HexaPDF
|
|
308
308
|
size = 0
|
309
309
|
color = [0]
|
310
310
|
if (da = self[:DA] || field[:DA])
|
311
|
-
HexaPDF::
|
311
|
+
HexaPDF::Type::AcroForm::VariableTextField.parse_appearance_string(da) do |obj, params|
|
312
312
|
case obj
|
313
313
|
when :rg, :g, :k then color = params.dup
|
314
314
|
when :Tf then size = params[1]
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
data/lib/hexapdf/type/catalog.rb
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
data/lib/hexapdf/type/font.rb
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|
@@ -4,7 +4,7 @@
|
|
4
4
|
# This file is part of HexaPDF.
|
5
5
|
#
|
6
6
|
# HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
7
|
-
# Copyright (C) 2014-
|
7
|
+
# Copyright (C) 2014-2021 Thomas Leitner
|
8
8
|
#
|
9
9
|
# HexaPDF is free software: you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU Affero General Public License version 3 as
|