Sha256: 4fb3020e6a1fb85a3a13ed2f06e65493112f3303bfbfc20cdbc10e9efe326425

Contents?: true

Size: 815 Bytes

Versions: 3

Compression:

Stored size: 815 Bytes

Contents

# encoding: utf-8
#
# To set the document metadata just pass a hash to the <code>:info</code>
# option when creating new documents.
# The keys in the example below are arbitrary, so you may add whatever keys you want
#
require File.expand_path(File.join(File.dirname(__FILE__),
                                   %w[.. example_helper]))

Prawn::Document.generate("metadata.pdf",
  :info => {
    :Title        => "My title",
    :Author       => "John Doe",
    :Subject      => "My Subject",
    :Keywords     => "test metadata ruby pdf dry",
    :Creator      => "ACME Soft App", 
    :Producer     => "Prawn",
    :CreationDate => Time.now
  }) do
  
  text "This is a test of setting metadata properties via the info option."
  text "While the keys are arbitrary, the above example sets common attributes."
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
prawn-1.0.0 manual/document_and_page_options/metadata.rb
prawn-0.15.0 manual/document_and_page_options/metadata.rb
prawn-0.14.0 manual/document_and_page_options/metadata.rb