03-01-2024, 03:50 AM
MY poor eyes might not be able to tell the difference normally, but you can certainly see the change if you place both pictures side-by-side!
What I'm more curious about at the moment, however, is how the heck did you generate two different size images?
I'd imagine you just used _SaveImage to generate those two images. Am I right?
If so, why the heck is one 779 pixels tall while the other is 780?
Code: (Select All)
Screen _NewImage(1280, 720, 32)
image1 = _LoadImage("z:\3.11.0.png", 32)
image2 = _LoadImage("z:\3.12.0.png", 32)
_PutImage (0, 0)-(639, 719), image2
_PutImage (640, 0)-(1279, 719), image1
Sleep
_PutImage (0, 0)-(638, 719), image1
_PutImage (640, 0)-(1278, 719), image2
What I'm more curious about at the moment, however, is how the heck did you generate two different size images?
I'd imagine you just used _SaveImage to generate those two images. Am I right?
If so, why the heck is one 779 pixels tall while the other is 780?