Sha256: 4754c06e2e512cbf1eb1d199734c0616d327e9e7285db1a4ac3309d407f3796c

Contents?: true

Size: 806 Bytes

Versions: 2

Compression:

Stored size: 806 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]))

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
}

Prawn::Document.generate("metadata.pdf", :info => info) 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

2 entries across 2 versions & 1 rubygems

Version Path
prawn-2.1.0 manual/document_and_page_options/metadata.rb
prawn-2.0.2 manual/document_and_page_options/metadata.rb