Author Topic: hardware / software image  (Read 2644 times)

0 Members and 1 Guest are viewing this topic.

Offline PMACKAY

  • Forum Regular
  • Posts: 188
  • LIFE is Temporary
    • View Profile
hardware / software image
« on: September 19, 2018, 09:39:55 am »
Probably a silly question.. If i wanted to print normal text, including cls in the forground withouth effecting a image in the background what would be the best method


load image and set in back ground
print "all ASCII chars in foreground

do i paste background image
print on top (using a pset (which is slow) or can i print on top using print
_display to update

    or

load hardware image/software. the do normal print on top, so the background image is a sprite

 

MackyWhite

Offline SMcNeill

  • QB64 Developer
  • Forum Resident
  • Posts: 3972
    • View Profile
    • Steve’s QB64 Archive Forum
Re: hardware / software image
« Reply #1 on: September 19, 2018, 12:10:34 pm »
http://qb64.org/wiki/PRINTMODE

_PRINTMODE _KEEPBACKGROUND

*****************

And to clear up a misunderstanding:  PRINT is slow.   You can manually PSET the points FASTER than you can PRINT them, in most cases.

See my print routines for comparison: http://qb64.freeforums.net/thread/37/custom-routines-supports-textures-shading
« Last Edit: September 19, 2018, 12:15:42 pm by SMcNeill »
https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!

Offline PMACKAY

  • Forum Regular
  • Posts: 188
  • LIFE is Temporary
    • View Profile
Re: hardware / software image
« Reply #2 on: September 20, 2018, 07:45:26 am »
thank you, great stuff :)
MackyWhite