1 2 3 4 5 6 7 8 9 10 11 12 |
# encoding: utf-8 # # Demonstrates how to use open-uri and Document#image to embed remote image # files. # $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib')) require "prawn" require "open-uri" Prawn::Document.generate("remote_images.pdf") do image open("http://prawn.majesticseacreature.com/media/prawn_logo.png") end |