Hi all!
I've been searching for something similar; the ability to write Shoes image
surfaces to disk.  After discovering this post in the list
archive...<http://article.gmane.org/gmane.comp.lib.shoes/1558/match=image>
http://article.gmane.org/gmane.comp.lib.shoes/1558/match=image...it seems
like it would be fun to generate shoes image surfaces procedurally, or to
draw on them with other images, saving the work to disk for future use.

Screenshots would be a nice step in this direction:)

Many thanks, as always.


On Wed, Dec 17, 2008 at 12:20 PM, Satoshi Asakawa <[email protected]> wrote:

> _why and shoemakers,
>
> I got a cool idea from the Shoes programming course of RubyLearning.org.
>
> It's the screenshot feature like this:
>
> Shoes.app do
>   ball = oval 0, 0, 10
>   animate{|i| ball.move i, i}
>   timer 3 do
>     screenshot './pic_in_3_sec.png'
>   end
> end
>
> We can get the screenshot of Shoes canvas (meaning without window frame)
> as the png format image data file named pic_in_3_sec.png on the current
> directory! :-D
>
> I don't know if it is feasible. It might be a stupid idea.
> But, really wish! :)
>
> Regards,
> ashbb
>

Reply via email to