yeah _newimage is nice, besides setting up your screen the size you want or need it also can be used to set up a separate workarea for processing or preprocessing images before layering onto screen for display.
b = b + ...
Screen 0
|
yeah _newimage is nice, besides setting up your screen the size you want or need it also can be used to set up a separate workarea for processing or preprocessing images before layering onto screen for display.
b = b + ...
04-07-2024, 02:06 AM
(04-06-2024, 09:43 PM)Tim Wrote: By the way, Terry, I implemented the code you gave me, SCREEN _NEWIMAGE(800, 600, 32) ' modern 800x600 32bit graphics screen. Very helpful. I am only on lesson 4 of the tutorial, but it still helps to be able to see the practice programs more completely than with the default.You're almost there. Lesson 5 introduces graphics and using _NEWIMAGE with SCREEN. You can make any size screen you like using this method. SCREEN _NEWIMAGE(1024, 768, 32) SCREEN _NEWIMAGE(1280, 1024, 32) SCREEN _NEWIMAGE(1600, 800, 32) The first two values, width and height, can be anything you like. (04-07-2024, 02:06 AM)TerryRitchie Wrote:Thanks. And I am on Lesson 5 now, and seeing that.(04-06-2024, 09:43 PM)Tim Wrote: By the way, Terry, I implemented the code you gave me, SCREEN _NEWIMAGE(800, 600, 32) ' modern 800x600 32bit graphics screen. Very helpful. I am only on lesson 4 of the tutorial, but it still helps to be able to see the practice programs more completely than with the default.You're almost there. Lesson 5 introduces graphics and using _NEWIMAGE with SCREEN. |
« Next Oldest | Next Newest »
|