Class: CorpPdf::Document

Inherits:
Object
  • Object
show all
Defined in:
lib/corp_pdf/document.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path_or_io) ⇒ Document

Returns a new instance of Document.



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/corp_pdf/document.rb', line 19

def initialize(path_or_io)
  @path = path_or_io.is_a?(String) ? path_or_io : nil
  raw_bytes = case path_or_io
              when String then File.binread(path_or_io)
              else path_or_io.binmode
                   path_or_io.read
              end

  # Extract PDF content if wrapped in multipart form data
  @raw = extract_pdf_from_form_data(raw_bytes).freeze
  @resolver = CorpPdf::ObjectResolver.new(@raw)
  @patches = []
  # Track radio button groups: group_id -> parent_field_ref
  @radio_groups = {}
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



5
6
7
# File 'lib/corp_pdf/document.rb', line 5

def path
  @path
end

Class Method Details

.flatten_pdf(input_path, output_path = nil) ⇒ Object

Flatten a PDF to remove incremental updates



8
9
10
11
12
13
14
15
16
17
# File 'lib/corp_pdf/document.rb', line 8

def self.flatten_pdf(input_path, output_path = nil)
  output = new(input_path).flatten

  if output_path
    File.binwrite(output_path, output)
    return output_path
  else
    return new(StringIO.new(output))
  end
end

Instance Method Details

#add_field(name, options = {}) ⇒ Object

Add a new field to the AcroForm /Fields array



313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
# File 'lib/corp_pdf/document.rb', line 313

def add_field(name, options = {})
  action = Actions::AddField.new(self, name, options)
  result = action.call

  if result
    position = {
      x: options[:x] || 100,
      y: options[:y] || 500,
      width: options[:width] || 100,
      height: options[:height] || 20,
      page: options[:page] || 1
    }

    field_obj_num = action.field_obj_num
    field_type = action.field_type
    field_value = action.field_value

    Field.new(name, field_value, field_type, [field_obj_num, 0], self, position)
  end
end

#clear(keep_fields: nil, remove_fields: nil, remove_pattern: nil) ⇒ Object

Clean up the PDF by removing unwanted fields. Options:

- keep_fields: Array of field names to keep (all others removed)
- remove_fields: Array of field names to remove
- remove_pattern: Regex pattern - fields matching this are removed
- block: Given field name, return true to keep, false to remove

This rewrites the entire PDF (like flatten) but excludes the unwanted fields.



383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
# File 'lib/corp_pdf/document.rb', line 383

def clear(keep_fields: nil, remove_fields: nil, remove_pattern: nil)
  root_ref = @resolver.root_ref
  raise "Cannot clear: no /Root found" unless root_ref

  # Build a set of fields to remove
  fields_to_remove = Set.new

  # Get all current fields
  all_fields = list_fields

  if block_given?
    # Use block to determine which fields to remove
    # Block receives field object (can check field.name, field.value, etc.)
    # Return true to remove the field, false to keep it
    all_fields.each do |field|
      fields_to_remove.add(field.name) if yield(field)
    end
  elsif keep_fields
    # Keep only specified fields
    keep_set = Set.new(keep_fields.map(&:to_s))
    all_fields.each do |field|
      fields_to_remove.add(field.name) unless keep_set.include?(field.name)
    end
  elsif remove_fields
    # Remove specified fields
    remove_set = Set.new(remove_fields.map(&:to_s))
    all_fields.each do |field|
      fields_to_remove.add(field.name) if remove_set.include?(field.name)
    end
  elsif remove_pattern
    # Remove fields matching pattern
    all_fields.each do |field|
      fields_to_remove.add(field.name) if field.name =~ remove_pattern
    end
  else
    # No criteria specified, return original
    return @raw
  end

  # Build sets of refs to exclude
  field_refs_to_remove = Set.new
  widget_refs_to_remove = Set.new

  all_fields.each do |field|
    next unless fields_to_remove.include?(field.name)

    field_refs_to_remove.add(field.ref) if field.valid_ref?

    # Find all widget annotations for this field
    @resolver.each_object do |widget_ref, body|
      next unless body && DictScan.is_widget?(body)
      next if widget_ref == field.ref

      # Match by /Parent reference
      if body =~ %r{/Parent\s+(\d+)\s+(\d+)\s+R}
        widget_parent_ref = [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]
        if widget_parent_ref == field.ref
          widget_refs_to_remove.add(widget_ref)
          next
        end
      end

      # Also match by field name (/T)
      next unless body.include?("/T")

      t_tok = DictScan.value_token_after("/T", body)
      next unless t_tok

      widget_name = DictScan.decode_pdf_string(t_tok)
      if widget_name && widget_name == field.name
        widget_refs_to_remove.add(widget_ref)
      end
    end
  end

  # Collect refs to write (excluding removed fields and widgets)
  # Store refs only initially to avoid loading all bodies into memory at once
  refs_to_keep = []
  @resolver.each_object do |ref, body|
    next if field_refs_to_remove.include?(ref)
    next if widget_refs_to_remove.include?(ref)
    next unless body

    refs_to_keep << ref
  end

  # Build objects hash - load bodies only for objects we need to modify
  # For unmodified objects, we'll load bodies on demand during writing
  objects = []
  refs_to_keep.each do |ref|
    body = @resolver.object_body(ref)
    objects << { ref: ref, body: body } if body
  end

  # Process AcroForm to remove field references from /Fields array
  af_ref = acroform_ref
  if af_ref && refs_to_keep.include?(af_ref)
    # Find the AcroForm object in our objects list
    af_obj = objects.find { |o| o[:ref] == af_ref }
    if af_obj
      af_body = af_obj[:body]
      fields_array_ref = DictScan.value_token_after("/Fields", af_body)

      if fields_array_ref && fields_array_ref =~ /\A(\d+)\s+(\d+)\s+R/
        # /Fields points to separate array object
        arr_ref = [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]
        arr_obj = objects.find { |o| o[:ref] == arr_ref }
        if arr_obj
          arr_body = arr_obj[:body]
          field_refs_to_remove.each do |field_ref|
            arr_body = DictScan.remove_ref_from_array(arr_body, field_ref)
          end
          # Clean up empty array
          arr_body = arr_body.strip.gsub(/\[\s+\]/, "[]")
          arr_obj[:body] = arr_body
        end
      elsif af_body.include?("/Fields")
        # Inline /Fields array
        field_refs_to_remove.each do |field_ref|
          af_body = DictScan.remove_ref_from_inline_array(af_body, "/Fields", field_ref)
        end
        af_obj[:body] = af_body
      end
    end
  end

  # Process page objects to remove widget references from /Annots arrays
  # Also remove any orphaned widget references (widgets that reference non-existent fields)
  objects_in_file = Set.new(objects.map { |o| o[:ref] })
  field_refs_in_file = Set.new
  objects.each do |obj|
    body = obj[:body]
    # Check if this is a field object
    if body&.include?("/FT") && body.include?("/T")
      field_refs_in_file.add(obj[:ref])
    end

    body = obj[:body]
    next unless DictScan.is_page?(body)

    # Handle inline /Annots array
    if body =~ %r{/Annots\s*\[(.*?)\]}
      annots_array_str = ::Regexp.last_match(1)

      # Remove widgets that match removed fields
      widget_refs_to_remove.each do |widget_ref|
        annots_array_str = annots_array_str.gsub(/\b#{widget_ref[0]}\s+#{widget_ref[1]}\s+R\b/, "").strip
        annots_array_str = annots_array_str.gsub(/\s+/, " ")
      end

      # Also remove orphaned widget references (widgets not in objects_in_file or pointing to non-existent fields)
      annots_refs = annots_array_str.scan(/(\d+)\s+(\d+)\s+R/).map { |n, g| [Integer(n), Integer(g)] }
      annots_refs.each do |annot_ref|
        # Check if this annotation is a widget that should be removed
        if objects_in_file.include?(annot_ref)
          # Widget exists - check if it's an orphaned widget (references non-existent field)
          widget_obj = objects.find { |o| o[:ref] == annot_ref }
          if widget_obj && DictScan.is_widget?(widget_obj[:body])
            widget_body = widget_obj[:body]
            # Check if widget references a parent field that doesn't exist
            if widget_body =~ %r{/Parent\s+(\d+)\s+(\d+)\s+R}
              parent_ref = [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]
              unless field_refs_in_file.include?(parent_ref)
                # Parent field doesn't exist - orphaned widget, remove it
                annots_array_str = annots_array_str.gsub(/\b#{annot_ref[0]}\s+#{annot_ref[1]}\s+R\b/, "").strip
                annots_array_str = annots_array_str.gsub(/\s+/, " ")
              end
            end
          end
        else
          # Widget object doesn't exist - remove it
          annots_array_str = annots_array_str.gsub(/\b#{annot_ref[0]}\s+#{annot_ref[1]}\s+R\b/, "").strip
          annots_array_str = annots_array_str.gsub(/\s+/, " ")
        end
      end

      new_annots = if annots_array_str.empty? || annots_array_str.strip.empty?
                     "[]"
                   else
                     "[#{annots_array_str}]"
                   end

      new_body = body.sub(%r{/Annots\s*\[.*?\]}, "/Annots #{new_annots}")
      obj[:body] = new_body
    # Handle indirect /Annots array reference
    elsif body =~ %r{/Annots\s+(\d+)\s+(\d+)\s+R}
      annots_array_ref = [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]
      annots_obj = objects.find { |o| o[:ref] == annots_array_ref }
      if annots_obj
        annots_body = annots_obj[:body]

        # Remove widgets that match removed fields
        widget_refs_to_remove.each do |widget_ref|
          annots_body = DictScan.remove_ref_from_array(annots_body, widget_ref)
        end

        # Also remove orphaned widget references
        annots_refs = annots_body.scan(/(\d+)\s+(\d+)\s+R/).map { |n, g| [Integer(n), Integer(g)] }
        annots_refs.each do |annot_ref|
          if objects_in_file.include?(annot_ref)
            widget_obj = objects.find { |o| o[:ref] == annot_ref }
            if widget_obj && DictScan.is_widget?(widget_obj[:body])
              widget_body = widget_obj[:body]
              if widget_body =~ %r{/Parent\s+(\d+)\s+(\d+)\s+R}
                parent_ref = [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]
                unless field_refs_in_file.include?(parent_ref)
                  annots_body = DictScan.remove_ref_from_array(annots_body, annot_ref)
                end
              end
            end
          else
            annots_body = DictScan.remove_ref_from_array(annots_body, annot_ref)
          end
        end

        annots_obj[:body] = annots_body
      end
    end
  end

  # Sort objects by object number
  objects.sort_by! { |obj| obj[:ref][0] }

  # Write the cleaned PDF
  writer = PDFWriter.new
  writer.write_header

  objects.each do |obj|
    writer.write_object(obj[:ref], obj[:body])
  end

  writer.write_xref

  trailer_dict = @resolver.trailer_dict
  info_ref = nil
  if trailer_dict =~ %r{/Info\s+(\d+)\s+(\d+)\s+R}
    info_ref = [::Regexp.last_match(1).to_i, ::Regexp.last_match(2).to_i]
  end

  # Write trailer
  max_obj_num = objects.map { |obj| obj[:ref][0] }.max || 0
  writer.write_trailer(max_obj_num + 1, root_ref, info_ref)

  writer.output
end

#clear!Object

Clean up in-place (mutates current instance)



630
631
632
633
634
635
636
637
638
# File 'lib/corp_pdf/document.rb', line 630

def clear!(...)
  cleaned_content = clear(...).freeze
  @raw = cleaned_content
  @resolver.clear_cache
  @resolver = CorpPdf::ObjectResolver.new(cleaned_content)
  @patches = []

  self
end

#flattenObject

Flatten this document to remove incremental updates



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/corp_pdf/document.rb', line 36

def flatten
  root_ref = @resolver.root_ref
  raise "Cannot flatten: no /Root found" unless root_ref

  # First pass: collect only references (lightweight) and find max_obj_num
  # This avoids loading all object bodies into memory at once
  refs = []
  max_obj_num = 0
  @resolver.each_object do |ref, body|
    if body
      refs << ref
      max_obj_num = [max_obj_num, ref[0]].max
    end
  end

  # Sort references by object number
  refs.sort_by! { |ref| ref[0] }

  # Second pass: write objects in sorted order, retrieving bodies on demand
  writer = PDFWriter.new
  writer.write_header

  refs.each do |ref|
    body = @resolver.object_body(ref)
    writer.write_object(ref, body) if body
  end

  writer.write_xref

  trailer_dict = @resolver.trailer_dict
  info_ref = nil
  if trailer_dict =~ %r{/Info\s+(\d+)\s+(\d+)\s+R}
    info_ref = [::Regexp.last_match(1).to_i, ::Regexp.last_match(2).to_i]
  end

  # Write trailer
  writer.write_trailer(max_obj_num + 1, root_ref, info_ref)

  writer.output
end

#flatten!Object

Flatten this document in-place (mutates current instance)



78
79
80
81
82
83
84
85
86
# File 'lib/corp_pdf/document.rb', line 78

def flatten!
  flattened_content = flatten.freeze
  @raw = flattened_content
  @resolver.clear_cache
  @resolver = CorpPdf::ObjectResolver.new(flattened_content)
  @patches = []

  self
end

#list_fieldsObject

Return an array of Field(name, value, type, ref)



171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
# File 'lib/corp_pdf/document.rb', line 171

def list_fields
  fields = []
  field_widgets = {}
  widgets_by_name = {}

  # First pass: collect widget information
  @resolver.each_object do |ref, body|
    next unless body

    is_widget = DictScan.is_widget?(body)

    # Collect widget information if this is a widget
    if is_widget
      # Extract position from widget
      rect_tok = DictScan.value_token_after("/Rect", body)
      if rect_tok && rect_tok.start_with?("[")
        # Parse [x y x+width y+height] format
        rect_values = rect_tok.scan(/[-+]?\d*\.?\d+/).map(&:to_f)
        if rect_values.length == 4
          x, y, x2, y2 = rect_values
          width = x2 - x
          height = y2 - y

          page_num = nil
          if body =~ %r{/P\s+(\d+)\s+(\d+)\s+R}
            page_ref = [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]
            page_num = find_page_number_for_ref(page_ref)
          end

          widget_info = {
            x: x, y: y, width: width, height: height, page: page_num
          }

          if body =~ %r{/Parent\s+(\d+)\s+(\d+)\s+R}
            parent_ref = [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]

            field_widgets[parent_ref] ||= []
            field_widgets[parent_ref] << widget_info
          end

          if body.include?("/T")
            t_tok = DictScan.value_token_after("/T", body)
            if t_tok
              widget_name = DictScan.decode_pdf_string(t_tok)
              if widget_name && !widget_name.empty?
                widgets_by_name[widget_name] ||= []
                widgets_by_name[widget_name] << widget_info
              end
            end
          end
        end
      end
    end

    # Second pass: collect all fields (both field objects and widget annotations with /T)
    next unless body.include?("/T")

    is_widget_field = is_widget
    hint = body.include?("/FT") || is_widget_field || body.include?("/Kids") || body.include?("/Parent")
    next unless hint

    t_tok = DictScan.value_token_after("/T", body)
    next unless t_tok

    name = DictScan.decode_pdf_string(t_tok)
    next if name.nil? || name.empty? # Skip fields with empty names (deleted fields)

    v_tok = body.include?("/V") ? DictScan.value_token_after("/V", body) : nil
    value = v_tok && v_tok != "<<" ? DictScan.decode_pdf_string(v_tok) : nil

    ft_tok = body.include?("/FT") ? DictScan.value_token_after("/FT", body) : nil
    type = ft_tok

    # Normalize button field values: "Yes" -> "/Yes" to match PDF name conventions
    if type == "/Btn" && value == "Yes"
      value = "/Yes"
    end

    position = {}
    if is_widget
      rect_tok = DictScan.value_token_after("/Rect", body)
      if rect_tok && rect_tok.start_with?("[")
        rect_values = rect_tok.scan(/[-+]?\d*\.?\d+/).map(&:to_f)
        if rect_values.length == 4
          x, y, x2, y2 = rect_values
          position = { x: x, y: y, width: x2 - x, height: y2 - y }

          if body =~ %r{/P\s+(\d+)\s+(\d+)\s+R}
            page_ref = [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]
            position[:page] = find_page_number_for_ref(page_ref)
          end
        end
      end
    elsif field_widgets[ref]
      widget_info = field_widgets[ref].first
      position = {
        x: widget_info[:x],
        y: widget_info[:y],
        width: widget_info[:width],
        height: widget_info[:height],
        page: widget_info[:page]
      }
    elsif widgets_by_name[name]
      widget_info = widgets_by_name[name].first
      position = {
        x: widget_info[:x],
        y: widget_info[:y],
        width: widget_info[:width],
        height: widget_info[:height],
        page: widget_info[:page]
      }
    end

    fields << Field.new(name, value, type, ref, self, position)
  end

  if fields.empty?
    stripped = DictScan.strip_stream_bodies(@raw)
    DictScan.each_dictionary(stripped) do |dict_src|
      next unless dict_src.include?("/T")

      is_widget_field_fallback = DictScan.is_widget?(dict_src)
      hint = dict_src.include?("/FT") || is_widget_field_fallback || dict_src.include?("/Kids") || dict_src.include?("/Parent")
      next unless hint

      t_tok = DictScan.value_token_after("/T", dict_src)
      next unless t_tok

      name = DictScan.decode_pdf_string(t_tok)
      next if name.nil? || name.empty? # Skip fields with empty names (deleted fields)

      v_tok = dict_src.include?("/V") ? DictScan.value_token_after("/V", dict_src) : nil
      value = v_tok && v_tok != "<<" ? DictScan.decode_pdf_string(v_tok) : nil
      ft_tok = dict_src.include?("/FT") ? DictScan.value_token_after("/FT", dict_src) : nil
      fields << Field.new(name, value, ft_tok, [-1, 0], self)
    end
  end

  fields.group_by(&:name).values.map { |arr| arr.min_by { |f| f.ref[0] } }
end

#list_pagesObject

Return an array of page information (page number, width, height, ref, metadata)



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# File 'lib/corp_pdf/document.rb', line 89

def list_pages
  pages = []
  page_objects = find_all_pages

  # Second pass: extract information from each page
  page_objects.each_with_index do |ref, index|
    body = @resolver.object_body(ref)
    next unless body

    # Extract MediaBox, CropBox, or ArtBox for dimensions
    width = nil
    height = nil

    # Try MediaBox first (most common) - also extract width/height
    media_box = DictScan.parse_box(body, "MediaBox")
    if media_box
      width = media_box[:urx] - media_box[:llx]
      height = media_box[:ury] - media_box[:lly]
    end

    # Parse other box types
    crop_box = DictScan.parse_box(body, "CropBox")
    art_box = DictScan.parse_box(body, "ArtBox")
    bleed_box = DictScan.parse_box(body, "BleedBox")
    trim_box = DictScan.parse_box(body, "TrimBox")

    # Extract rotation
    rotate = nil
    if body =~ %r{/Rotate\s+(\d+)}
      rotate = Integer(::Regexp.last_match(1))
    end

    # Extract Resources reference
    resources_ref = nil
    if body =~ %r{/Resources\s+(\d+)\s+(\d+)\s+R}
      resources_ref = [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]
    end

    # Extract Parent reference
    parent_ref = nil
    if body =~ %r{/Parent\s+(\d+)\s+(\d+)\s+R}
      parent_ref = [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]
    end

    # Extract Contents reference(s)
    contents_refs = []
    if body =~ %r{/Contents\s+(\d+)\s+(\d+)\s+R}
      contents_refs << [Integer(::Regexp.last_match(1)), Integer(::Regexp.last_match(2))]
    elsif body =~ %r{/Contents\s*\[(.*?)\]}
      contents_array = ::Regexp.last_match(1)
      contents_array.scan(/(\d+)\s+(\d+)\s+R/) do |num_str, gen_str|
        contents_refs << [num_str.to_i, gen_str.to_i]
      end
    end

    # Build metadata hash
     = {
      rotate: rotate,
      media_box: media_box,
      crop_box: crop_box,
      art_box: art_box,
      bleed_box: bleed_box,
      trim_box: trim_box,
      resources_ref: resources_ref,
      parent_ref: parent_ref,
      contents_refs: contents_refs
    }

    pages << Page.new(
      index + 1, # Page number starting at 1
      width,
      height,
      ref,
      ,
      self # Pass document reference
    )
  end

  pages
end

#remove_field(fld) ⇒ Object

Remove field by name from the AcroForm /Fields array



369
370
371
372
373
374
# File 'lib/corp_pdf/document.rb', line 369

def remove_field(fld)
  field = fld.is_a?(Field) ? fld : list_fields.find { |f| f.name == fld }
  return false unless field

  field.remove
end

#update_field(name, new_value, new_name: nil) ⇒ Object

Update field by name, setting /V and optionally /AS on widgets



335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# File 'lib/corp_pdf/document.rb', line 335

def update_field(name, new_value, new_name: nil)
  # First try to find in list_fields (already written fields)
  field = list_fields.find { |f| f.name == name }

  # If not found, check if field was just added (in patches) and create a Field object for it
  unless field
    patches = @patches
    field_patch = patches.find do |p|
      next unless p[:body]
      next unless p[:body].include?("/T")

      t_tok = DictScan.value_token_after("/T", p[:body])
      next unless t_tok

      field_name = DictScan.decode_pdf_string(t_tok)
      field_name == name
    end

    if field_patch && field_patch[:body].include?("/FT")
      ft_tok = DictScan.value_token_after("/FT", field_patch[:body])
      if ft_tok
        # Create a temporary Field object for newly added field
        position = {}
        field = Field.new(name, nil, ft_tok, field_patch[:ref], self, position)
      end
    end
  end

  return false unless field

  field.update(new_value, new_name: new_name)
end

#write(path_out = nil, flatten: true) ⇒ Object

Write out with an incremental update



641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
# File 'lib/corp_pdf/document.rb', line 641

def write(path_out = nil, flatten: true)
  deduped_patches = @patches.reverse.uniq { |p| p[:ref] }.reverse
  writer = CorpPdf::IncrementalWriter.new(@raw, deduped_patches)
  @raw = writer.render.freeze
  @patches = []
  @resolver.clear_cache
  @resolver = CorpPdf::ObjectResolver.new(@raw)

  flatten! if flatten

  if path_out
    File.binwrite(path_out, @raw)
    return true
  else
    return @raw
  end
end