Skip to content

Instantly share code, notes, and snippets.

@ferclaverino
Created October 30, 2012 01:48
Show Gist options
  • Save ferclaverino/3977846 to your computer and use it in GitHub Desktop.
Save ferclaverino/3977846 to your computer and use it in GitHub Desktop.
fotoyop
filename = ask_open_file
Shoes.app(:title => "Fotoyop",
:width => 800,
:height => 600,
:resize => true) do
stack do
title(filename)
para
@img = image(filename)
para
button("enmarcar") do
stroke black
nofill
rotate 5
rect @img.left, @img.top, @img.width, @img.height
end
button("guardar") do
_snapshot :filename => "snapthot.pdf", :format => :pdf
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment