1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 07:25:53 +00:00
QB64-PE/internal/help/_SOURCE.txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

41 lines
1.3 KiB
Plaintext

The {{KW|_SOURCE}} statement establishes the image SOURCE using a handle created by {{KW|_LOADIMAGE}} or {{KW|_NEWIMAGE}}.
{{PageSyntax}}
:{{KW|_SOURCE}} {{Parameter|handle&amp;}}
{{PageDescription}}
* The handle is a {{KW|LONG}} integer value from the {{KW|_SOURCE (function)|_SOURCE}} function or a handle created by {{KW|_NEWIMAGE}}.
* If the handle is designated as 0, it refers to the current {{KW|SCREEN (statement)|SCREEN}} image.
* A source image can only supply information to a program. [[POINT]] and [[GET (graphics statement)|GET]] might require a source other than the present one.
{{PageExamples}}
{{CodeStart}} '' ''
{{Cl|SCREEN (statement)|SCREEN}} 13
a = {{Cl|_NEWIMAGE}}(320,200,13)
{{Cl|_DEST}} a
{{Cl|PSET}} (100, 100), 15
{{Cl|_SOURCE}} a
{{Cl|_DEST}} 0
{{Cl|PRINT}} {{Cl|POINT}}(100, 100) '' ''
{{CodeEnd}}
{{OutputStart}}
15
{{OutputEnd}}
: ''Explanation:'' Create a new image with handle 'a', then use {{KW|_DEST}} to define the image to draw on. Draw a pixel then set the source to 'a' and use {{KW|POINT}} to show what color is in that position. White (15) and is the color set with {{KW|PSET}}. Use {{KW|_DEST}} 0 for the screen to display the results.
*''See Example:''
* [[Bitmaps]]
* [[SAVEIMAGE]]
* [[SaveIcon32]]
{{PageSeeAlso}}
* [[_DEST]]
* [[_SOURCE (function)]]
{{PageNavigation}}