pdf_oxide 0.3.73-aarch64-linux → 0.3.74-aarch64-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4827c892e5a14ab8c437756602c1c4631de4b1fc6c49d896f6eff756a7ef6780
4
- data.tar.gz: ac0d736fbbeb3e38950b72813a77b524050775b2db8ef607b131a9a7a6f8ffd7
3
+ metadata.gz: 8a22c0b2da21f3bdee0aba4c7f06ab5a04cc60f00a7724c0ca7d1d94612d5f44
4
+ data.tar.gz: 11e630c73f412be5d2385d68d4f51bc8d003836d58ebb3f22010aa10a3c3ea25
5
5
  SHA512:
6
- metadata.gz: c1b0fd8dd6de6dbab7cb34d180204d44e6a808e32c5c2f20d858e9d171f556f19c76fbe4b54d39f07a719572048eaf1bc30d43573f420258cbbeec6c66bfdc4f
7
- data.tar.gz: f9fa13129db281b79a006b4a0c927974456c35963681170f94cd3d89f29d8c1c50e26f59fba75ddba91a89006df45405f386981ea52527794e59297f632c150c
6
+ metadata.gz: 4c4562baee4d2ac6f544f1e5abca2129f46ed25363de1ed1653e36507a9ff396ad1a9aa70fe485176bcc06cbe252fa31e8937cfda809f23b2f49e964d41140ba
7
+ data.tar.gz: 6803bf755f83d000c0cddc94d74191eace61ffa9f2c0d509959e736a0c029734e7855d4f0bcaaa8c47319794767dd7e068b7858554dfa3935c638cf6c89c6904
Binary file
@@ -1450,6 +1450,13 @@ module PdfOxide
1450
1450
  attach_function :pdf_oxide_path_count, %i[pointer pointer pointer pointer pointer pointer pointer pointer], :pointer, blocking: false
1451
1451
  attach_function :pdf_oxide_path_get_bbox, %i[pointer pointer pointer pointer pointer pointer pointer pointer], :pointer, blocking: false
1452
1452
  attach_function :pdf_oxide_path_get_operation_count, %i[pointer pointer pointer pointer pointer pointer pointer pointer], :pointer, blocking: false
1453
+ # void pdf_oxide_path_get_rendered_bbox(const void *paths, int32_t index,
1454
+ # float *x, float *y, float *w, float *h, int *error_code)
1455
+ # Stroke-inflated path extents (geometric bbox + half the stroke width on each side);
1456
+ # identical to pdf_oxide_path_get_bbox for unstroked paths.
1457
+ attach_function :pdf_oxide_path_get_rendered_bbox,
1458
+ %i[pointer int32 pointer pointer pointer pointer pointer], :void,
1459
+ blocking: false
1453
1460
  attach_function :pdf_oxide_path_get_stroke_width, %i[pointer pointer pointer pointer pointer pointer pointer pointer], :pointer, blocking: false
1454
1461
  attach_function :pdf_oxide_path_has_fill, %i[pointer pointer pointer pointer pointer pointer pointer pointer], :pointer, blocking: false
1455
1462
  attach_function :pdf_oxide_path_has_stroke, %i[pointer pointer pointer pointer pointer pointer pointer pointer], :pointer, blocking: false
@@ -1465,6 +1472,10 @@ module PdfOxide
1465
1472
  attach_function :pdf_oxide_word_get_bbox, %i[pointer pointer pointer pointer pointer pointer pointer pointer], :pointer, blocking: false
1466
1473
  attach_function :pdf_oxide_word_get_font_name, %i[pointer pointer pointer pointer pointer pointer pointer pointer], :pointer, blocking: false
1467
1474
  attach_function :pdf_oxide_word_get_font_size, %i[pointer pointer pointer pointer pointer pointer pointer pointer], :pointer, blocking: false
1475
+ # float pdf_oxide_word_get_rotation(const void *words, int32_t index, int *error_code)
1476
+ # Glyph-run rotation in degrees, quadrant-snapped (0 / 90 / 180 / -90); 90 = text reads
1477
+ # bottom-to-top on an unrotated page. 0.0 + error code on null/out-of-range.
1478
+ attach_function :pdf_oxide_word_get_rotation, %i[pointer int32 pointer], :float, blocking: false
1468
1479
  # int64_t pdf_oxide_word_get_sequence(const void *words, int32_t index, int *error_code)
1469
1480
  # Content-stream emission order of the word's originating span; -1 on null/out-of-range.
1470
1481
  attach_function :pdf_oxide_word_get_sequence, %i[pointer int32 pointer], :int64, blocking: false
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PdfOxide
4
- VERSION = '0.3.73'
4
+ VERSION = '0.3.74'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pdf_oxide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.73
4
+ version: 0.3.74
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - PDF Oxide Contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-06 00:00:00.000000000 Z
11
+ date: 2026-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi