Difference between revisions of "Unit uBitmap"

From Ultibo.org
Jump to: navigation, search
Line 10: Line 10:
 
   
 
   
 
DrawBitmap: https://ultibo.org/forum/viewtopic.php?f=13&t=312
 
DrawBitmap: https://ultibo.org/forum/viewtopic.php?f=13&t=312
 +
 
SaveBitmap: https://ultibo.org/forum/viewtopic.php?f=13&t=313
 
SaveBitmap: https://ultibo.org/forum/viewtopic.php?f=13&t=313
  
Line 29: Line 30:
 
=== Function declarations ===
 
=== Function declarations ===
 
----
 
----
 +
  
 
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;">
 
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;">
Line 87: Line 89:
 
</div></div>
 
</div></div>
 
<br />
 
<br />
 
  
 
Return to [[Unit_Reference|Unit Reference]]
 
Return to [[Unit_Reference|Unit Reference]]

Revision as of 02:44, 23 November 2016

Return to Unit Reference


Description


Functions to draw or save a standard bitmap image to or from an Ultibo graphics console window.

These functions originally appeared in the Ultibo forum and examples of how to use them can be found there:

DrawBitmap: https://ultibo.org/forum/viewtopic.php?f=13&t=312

SaveBitmap: https://ultibo.org/forum/viewtopic.php?f=13&t=313

Constants


To be documented

Type definitions


To be documented

Public variables


To be documented

Function declarations



[Expand]
function DrawBitmap(Handle:TWindowHandle; const Filename:String; X,Y:LongWord):Boolean;
Description: A function for drawing a standard bitmap image onto an Ultibo graphics console window


[Expand]
function SaveBitmap(Handle:TWindowHandle; const Filename:String; X,Y,Width,Height,BPP:LongWord):Boolean;
Description: A function for saving all or part of an Ultibo graphics console window to a standard bitmap file


Return to Unit Reference