class PDF::Core::Page

Public Instance Methods

new_content_stream() click to toggle source

Restore the #new_content_stream method from PDF::Core::Page

The prawn-templates gem relies on the #new_content_stream method on PDF::Core::Page, which was removed in pdf-core 0.3.1. prawn-templates is used for importing a single-page PDF into the current document.

see github.com/prawnpdf/pdf-core/commit/67f9a08a03bcfcc5a24cf76b135c218d3d3ab05d

# File lib/asciidoctor-pdf/pdf_core_ext/page.rb, line 11
def new_content_stream
  return if in_stamp_stream?
  unless ::Array === dictionary.data[:Contents]
    dictionary.data[:Contents] = [content]
  end
  @content = document.ref({})
  dictionary.data[:Contents] << document.state.store[@content]
  document.renderer.open_graphics_state
end