'How do i Import Pictures In Turing??????????/
Author |
Message |
desiallstar
|
Posted: Wed Dec 22, 2004 12:43 pm Post subject: 'How do i Import Pictures In Turing??????????/ |
|
|
Hi i need help with how to import pictures from either the internet or my hard drive...
Thnkx in advance
Can i use the pictures in an animation?? |
|
|
|
|
|
Sponsor Sponsor
|
|
|
AsianSensation
|
Posted: Wed Dec 22, 2004 12:58 pm Post subject: (No subject) |
|
|
http://www.compsci.ca/v2/viewtopic.php?t=191
I'm pretty sure we covered alot of stuff in our tutorial database. Try looking through it next time, you'll find that alot of your questions are already answered.
Now if you have a specific question not addressed, you can always come back and ask. |
|
|
|
|
|
draddog
|
Posted: Wed Dec 22, 2004 1:51 pm Post subject: (No subject) |
|
|
all you do is
Pic.ScreenLoad([imagename.extension],x,y,picCopy)
i pretty sure |
|
|
|
|
|
BPhelmet
|
Posted: Wed Dec 22, 2004 3:28 pm Post subject: (No subject) |
|
|
code: | var variable_you_like : int
variable_you_like := Pic.FileNew("your_picture_name.your_picture_format")
Pic.Draw (variable_you_like,x,y,picCopy/picMerge/picUnderMer)
|
you can learn more from turing help too |
|
|
|
|
|
Jonny Tight Lips
|
Posted: Thu Dec 23, 2004 7:28 pm Post subject: (No subject) |
|
|
and to save your self some time....
code: | var variable_you_like : int := Pic.FileNew("your_picture_name.your_picture_format")
|
|
|
|
|
|
|
|
|