Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Screen 0
#11
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.
  724  855  599  923  575  468  400  206  147  564  878  823  652  556 bxor cross forever
Reply
#12
(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.
New to QB64pe? Visit the QB64 tutorial to get started.
QB64 Tutorial
Reply
#13
(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.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  No warning to mix screen 0 and screen graphic commands! TempodiBasic 8 1,803 06-16-2023, 11:36 PM
Last Post: TempodiBasic

Forum Jump:


Users browsing this thread: 1 Guest(s)