About Store Forum Documentation Contact



Post Reply 
Draw image - fill application screen
Author Message
rstralberg Offline
Member

Post: #1
Draw image - fill application screen
Here is a simple newbie question

How to draw an image stretched out to fill entire application screen.

image.draw( rect( 0, 0, ?, ? ) ) ... ?

My Blog is at http://mrstralberg.blogspot.se.
Chat account Skype (rstralberg)
03-01-2013 04:16 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Draw image - fill application screen
you can use helper function:
Image.drawFs

as for the screen dimensions:
please check this doc http://www.esenthel.com/wiki/index.php?t...oordinates

Rect(-D.w(), -D.h(), D.w(), D.h());
03-01-2013 04:46 PM
Find all posts by this user Quote this message in a reply
rstralberg Offline
Member

Post: #3
RE: Draw image - fill application screen
Thanks grin

My Blog is at http://mrstralberg.blogspot.se.
Chat account Skype (rstralberg)
03-01-2013 04:46 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply