Created
October 30, 2012 01:48
-
-
Save ferclaverino/3977846 to your computer and use it in GitHub Desktop.
fotoyop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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