<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://mitov.com/wiki/skins/common/feed.css?301"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://mitov.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Interface_IGDIPlus.IGPBitmap</id>
		<title>Interface IGDIPlus.IGPBitmap - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://mitov.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Interface_IGDIPlus.IGPBitmap"/>
		<link rel="alternate" type="text/html" href="https://mitov.com/wiki/index.php?title=Interface_IGDIPlus.IGPBitmap&amp;action=history"/>
		<updated>2026-05-04T13:27:31Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.17.0</generator>

	<entry>
		<id>https://mitov.com/wiki/index.php?title=Interface_IGDIPlus.IGPBitmap&amp;diff=11295&amp;oldid=prev</id>
		<title>David Alm: Automated Syncronization with Documentation</title>
		<link rel="alternate" type="text/html" href="https://mitov.com/wiki/index.php?title=Interface_IGDIPlus.IGPBitmap&amp;diff=11295&amp;oldid=prev"/>
				<updated>2012-10-18T17:18:41Z</updated>
		
		<summary type="html">&lt;p&gt;Automated Syncronization with Documentation&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;b&amp;gt;&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;&lt;br /&gt;
This is a Beta Read Only version of this page. &lt;br /&gt;
Please review and send recommendations to [mailto:mitov@mitov.com mitov@mitov.com]. &lt;br /&gt;
We will enable the editing as soon as we are happy with the overall Wiki site.&lt;br /&gt;
&amp;lt;/span&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Package:''' [[Package SignalLabBasicPkg|SignalLabBasicPkg]]&lt;br /&gt;
&lt;br /&gt;
'''Unit:''' [[Unit IGDIPlus|IGDIPlus]]&lt;br /&gt;
&lt;br /&gt;
'''Inherits:''' [[Interface IGDIPlus.IGPImage|IGPImage]]&lt;br /&gt;
&lt;br /&gt;
== Syntax ==&lt;br /&gt;
=== Delphi: ===&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
'''type''' IGPBitmap = '''interface'''( [[Interface IGDIPlus.IGPImage|IGPImage]] )&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
== Summary ==&lt;br /&gt;
Interface to a [[Class IGDIPlus.TGPBitmap|TGPBitmap]] object. &lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
Defines interface to a [[Class IGDIPlus.TGPBitmap|TGPBitmap]] object.&lt;br /&gt;
&lt;br /&gt;
The [[Class IGDIPlus.TGPBitmap|TGPBitmap]] class inherits from the [[Class IGDIPlus.TGPImage|TGPImage]] class. The&lt;br /&gt;
[[Class IGDIPlus.TGPImage|TGPImage]] class provides methods for loading and saving vector&lt;br /&gt;
images (metafiles) and raster images (bitmaps). The [[Class IGDIPlus.TGPBitmap|TGPBitmap]]&lt;br /&gt;
class expands on the capabilities of the [[Class IGDIPlus.TGPImage|TGPImage]] class by&lt;br /&gt;
providing additional methods for creating and manipulating&lt;br /&gt;
raster images.&lt;br /&gt;
&lt;br /&gt;
== Properties ==&lt;br /&gt;
*[[Property IGDIPlus.IGPBitmap.Pixels|Pixels]] - Sets or gets the color of a specified pixel in this bitmap. &lt;br /&gt;
&lt;br /&gt;
== Methods ==&lt;br /&gt;
*[[Method function IGDIPlus.IGPBitmap.Clone(TGPRect;TGPPixelFormat) : TGPBitmap|function Clone(rect : TGPRect; format : TGPPixelFormat) : TGPBitmap]] - Creates a new [[Class IGDIPlus.TGPBitmap|TGPBitmap]] object by copying a portion of this bitmap. &lt;br /&gt;
*[[Method function IGDIPlus.IGPBitmap.Clone(Integer;Integer;Integer;Integer;TGPPixelFormat) : TGPBitmap|function Clone(x : Integer; y : Integer; width : Integer; height : Integer; format : TGPPixelFormat) : TGPBitmap]] - Creates a new [[Class IGDIPlus.TGPBitmap|TGPBitmap]] object by copying a portion of this bitmap. &lt;br /&gt;
*[[Method function IGDIPlus.IGPBitmap.CloneF(TGPRectF;TGPPixelFormat) : TGPBitmap|function CloneF(rect : TGPRectF; format : TGPPixelFormat) : TGPBitmap]] - Creates a new [[Class IGDIPlus.TGPBitmap|TGPBitmap]] object by copying a portion of this bitmap. &lt;br /&gt;
*[[Method function IGDIPlus.IGPBitmap.CloneF(Single;Single;Single;Single;TGPPixelFormat) : TGPBitmap|function CloneF(x : Single; y : Single; width : Single; height : Single; format : TGPPixelFormat) : TGPBitmap]] - Creates a new [[Class IGDIPlus.TGPBitmap|TGPBitmap]] object by copying a portion of this bitmap. &lt;br /&gt;
*[[Method function IGDIPlus.IGPBitmap.LockBits(TGPRect;Cardinal;TGPPixelFormat) : IGPBitmapData|function LockBits(rect : TGPRect; flags : Cardinal; format : TGPPixelFormat) : IGPBitmapData]] - Locks a rectangular portion of this bitmap and provides a temporary buffer. &lt;br /&gt;
*[[Method function IGDIPlus.IGPBitmap.GetPixel(Integer;Integer) : TGPColor|function GetPixel(x : Integer; y : Integer) : TGPColor]] - Gets the color of a specified pixel in this bitmap. &lt;br /&gt;
*[[Method function IGDIPlus.IGPBitmap.SetPixel(Integer;Integer;TGPColor) : TGPBitmap|function SetPixel(x : Integer; y : Integer; color : TGPColor) : TGPBitmap]] - Sets the color of a specified pixel in this bitmap. &lt;br /&gt;
*[[Method procedure IGDIPlus.IGPBitmap.SetPixelProp(Integer;Integer;TGPColor)|procedure SetPixelProp(x : Integer; y : Integer; color : TGPColor)]]&lt;br /&gt;
*[[Method function IGDIPlus.IGPBitmap.SetResolution(Single;Single) : TGPBitmap|function SetResolution(xdpi : Single; ydpi : Single) : TGPBitmap]] - Sets the resolution of this [[Class IGDIPlus.TGPBitmap|TGPBitmap]] object. &lt;br /&gt;
*[[Method function IGDIPlus.IGPBitmap.GetHBITMAP(TGPColor) : HBITMAP|function GetHBITMAP(colorBackground : TGPColor) : HBITMAP]] - Creates a Microsoft Windows Graphics Device Interface (GDI) bitmap from this Bitmap object. &lt;br /&gt;
*[[Method function IGDIPlus.IGPBitmap.GetHICON() : HICON|function GetHICON() : HICON]] - Creates an icon from this Bitmap object. &lt;br /&gt;
&lt;br /&gt;
[[Category:Interfaces]]&lt;/div&gt;</summary>
		<author><name>David Alm</name></author>	</entry>

	</feed>