QB64 Phoenix Edition
Screen 0 - Printable Version

+- QB64 Phoenix Edition (https://qb64phoenix.com/forum)
+-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1)
+--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3)
+---- Forum: Help Me! (https://qb64phoenix.com/forum/forumdisplay.php?fid=10)
+---- Thread: Screen 0 (/showthread.php?tid=2579)

Pages: 1 2


RE: Screen 0 - bplus - 04-06-2024

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.


RE: Screen 0 - TerryRitchie - 04-07-2024

(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.


RE: Screen 0 - Tim - 04-07-2024

(04-07-2024, 02:06 AM)TerryRitchie Wrote:
(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.
Thanks. And I am on Lesson 5 now, and seeing that.