File: stamp.rb

package info (click to toggle)
ruby-prawn 2.1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,220 kB
  • ctags: 826
  • sloc: ruby: 14,469; sh: 43; makefile: 18
file content (41 lines) | stat: -rw-r--r-- 1,361 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# encoding: utf-8
#
# Stamps should be used when you have content that will be included multiple
# times in a document. Its advantages over creating the content anew each time
# are:
#   1.  Faster document creation
#   2.  Smaller final document
#   3.  Faster display on subsequent displays of the repeated
# element because the viewer application can cache the rendered
# results
#
# The <code>create_stamp</code> method does just what it says. Pass it a block
# with the content that should be generated and the stamp will be created.
#
# There are two methods to render the stamp on a page <code>stamp</code> and
# <code>stamp_at</code>. The first will render the stamp as is while the
# second accepts a point to serve as an offset to the stamp content.
#
require File.expand_path(File.join(File.dirname(__FILE__),
                                   %w[.. example_helper]))

filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
  create_stamp("approved") do
    rotate(30, :origin => [-5, -5]) do
      stroke_color "FF3333"
      stroke_ellipse [0, 0], 29, 15
      stroke_color "000000"

      fill_color "993333"
      font("Times-Roman") do
        draw_text "Approved", :at => [-23, -3]
      end
      fill_color "000000"
    end
  end

  stamp "approved"

  stamp_at "approved", [200, 200]
end