Skip to content

Instantly share code, notes, and snippets.

@ankit8898
Created November 3, 2014 17:24
Show Gist options
  • Save ankit8898/ffe2f972fcf85b99b307 to your computer and use it in GitHub Desktop.
Save ankit8898/ffe2f972fcf85b99b307 to your computer and use it in GitHub Desktop.
Prawn svg
Display the source blob
Display the rendered blob
Raw
<svg xmlns="http://www.w3.org/2000/svg" width="360" height="180"><circle class="little" cx="11.5841297339648" cy="161.00056481547654" r="12" fill="#1b0559"/><circle class="little" cx="314.6361860912293" cy="40.18030760809779" r="12" fill="#28678e"/><circle class="little" cx="337.4467474222183" cy="34.78658485226333" r="12" fill="#90c17e"/></svg>
require "prawn-svg"
Prawn::Document.generate("svg1.pdf") do
# svg svg_data, :at => [x, y], :width => w
svg IO.read("b.svg"), :at => [10, 240]#, :width => 600
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment