Checking out access to the Source Image, let's see if we can isolate the QB64 image in the middle third across and 1/3 down from top of QB64pe Logo. Yes and have a little fun with it! 
EDIT: expanded the area of grab off source by pixels for fuller letters and digits.

Code: (Select All)
Screen _NewImage(800, 600, 32) ' screen width, height, 32 is _RGBA colors
_Delay .2
Logo& = _LoadImage("qb64pe.png")
' OK lets see if we can isolate the QB64 print from the Source side
' it looks to be the middle 1/3 going across and the top 1/3 going down
xThird = _Width(Logo&) / 3
yThird = _Height(Logo&) / 3
_PutImage , Logo&, 0, (xThird - 2, 0)-Step(xThird + 3, yThird + 1)
For y = 6 To _Height - 1 Step 2 * (yThird + 3)
For x = 10 To _Width - 1 Step 2 * (xThird + 3)
_PutImage (x, y), Logo&, 0, (xThird - 2, 0)-Step(xThird + 3, yThird + 1)
Next
Next
SleepEDIT: expanded the area of grab off source by pixels for fuller letters and digits.
724 855 599 923 575 468 400 206 147 564 878 823 652 556 bxor cross forever

