mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:17:52 +02:00
Docs: LCL/intfgraphics. Fixes errors in example code. Issue #40970.
* Discussion in https://forum.lazarus.freepascal.org/index.php/topic,67369.msg518241.html.
This commit is contained in:
parent
c07636816e
commit
5b84fae03d
@ -149,7 +149,9 @@ Author: Mattias Gaertner
|
||||
</element>
|
||||
|
||||
<element name="TLazIntfImage">
|
||||
<short>Represents a graphical image.</short>
|
||||
<short>
|
||||
Represents a graphical image.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
TLazIntfImage is a <var>TFPCustomImage</var> descendant which stores the
|
||||
@ -167,59 +169,59 @@ deal with direct interface to the operating system at the pixel level.
|
||||
1. Loading an .xpm file into a TBitmap:
|
||||
</p>
|
||||
<code>
|
||||
var
|
||||
BmpHnd,MaskHnd: HBitmap;
|
||||
Bitmap1: TBitmap;
|
||||
IntfImg1: TLazIntfImage;
|
||||
Reader: TLazReaderXPM;
|
||||
begin
|
||||
// create a bitmap (or use an existing one)
|
||||
Bitmap1:=TBitmap.Create;
|
||||
// create the raw image
|
||||
IntfImg1:=TLazIntfImage.Create(0,0);
|
||||
// get the description for the current screen (bitsperpixel, depth, ...)
|
||||
IntfImg1.GetDescriptionFromDevice(0);
|
||||
// create the XPM reader
|
||||
Reader:=TLazReaderXPM.Create;
|
||||
// load the image
|
||||
IntfImg1.LoadFromFile('filename.xpm',Reader);
|
||||
// create the bitmap handles
|
||||
IntfImg1.CreateBitmap(BmpHnd,MaskHnd);
|
||||
// apply handles to the Bitmap1
|
||||
Bitmap1.Handle:=BmpHnd;
|
||||
Bitmap1.MaskHandle:=MaskHnd;
|
||||
// clean up
|
||||
Reader.Free;
|
||||
IntfImg1.Free;
|
||||
// do something with the Bitmap1
|
||||
...
|
||||
end;
|
||||
var
|
||||
BmpHnd,MaskHnd: HBitmap;
|
||||
Bitmap1: TBitmap;
|
||||
IntfImg1: TLazIntfImage;
|
||||
Reader: TLazReaderXPM;
|
||||
begin
|
||||
// create a bitmap (or use an existing one)
|
||||
Bitmap1:=TBitmap.Create;
|
||||
// create the raw image
|
||||
IntfImg1:=TLazIntfImage.Create(0,0);
|
||||
// get the description for the current screen (bitsperpixel, depth, ...)
|
||||
IntfImg1.DataDescription := GetDescriptionFromDevice(0);
|
||||
// create the XPM reader
|
||||
Reader:=TLazReaderXPM.Create;
|
||||
// load the image
|
||||
IntfImg1.LoadFromFile('filename.xpm',Reader);
|
||||
// create the bitmap handles
|
||||
IntfImg1.CreateBitmaps(BmpHnd,MaskHnd);
|
||||
// apply handles to the Bitmap1
|
||||
Bitmap1.Handle:=BmpHnd;
|
||||
Bitmap1.MaskHandle:=MaskHnd;
|
||||
// clean up
|
||||
Reader.Free;
|
||||
IntfImg1.Free;
|
||||
// do something with the Bitmap1
|
||||
// ...
|
||||
end;
|
||||
</code>
|
||||
<p>
|
||||
2. Saving a TBitmap to an .xpm file:
|
||||
</p>
|
||||
<code>
|
||||
var
|
||||
BmpHnd,MaskHnd: HBitmap;
|
||||
Bitmap1: TBitmap;
|
||||
IntfImg1: TLazIntfImage;
|
||||
Writer: TLazWriterXPM;
|
||||
begin
|
||||
...
|
||||
// create the raw image
|
||||
IntfImg1:=TLazIntfImage.Create(0,0);
|
||||
// load the raw image from the bitmap handles
|
||||
IntfImg1.LoadFromBitmap(Bitmap1.Handle,Bitmap1.MaskHandle);
|
||||
// create the XPM writer
|
||||
Writer:=TLazWriterXPM.Create;
|
||||
// save image to file
|
||||
IntfImg1.SaveToFile('filename.xpm',Writer);
|
||||
// clean up
|
||||
Writer.Free;
|
||||
IntfImg1.Free;
|
||||
...
|
||||
end;
|
||||
}
|
||||
var
|
||||
BmpHnd,MaskHnd: HBitmap;
|
||||
Bitmap1: TBitmap;
|
||||
IntfImg1: TLazIntfImage;
|
||||
Writer: TLazWriterXPM;
|
||||
begin
|
||||
// ...
|
||||
// create the raw image
|
||||
IntfImg1:=TLazIntfImage.Create(0,0);
|
||||
// load the raw image from the bitmap handles
|
||||
IntfImg1.LoadFromBitmap(Bitmap1.Handle,Bitmap1.MaskHandle);
|
||||
// create the XPM writer
|
||||
Writer:=TLazWriterXPM.Create;
|
||||
// save image to file
|
||||
IntfImg1.SaveToFile('filename.xpm',Writer);
|
||||
// clean up
|
||||
Writer.Free;
|
||||
IntfImg1.Free;
|
||||
// ...
|
||||
end;
|
||||
|
||||
</code>
|
||||
</descr>
|
||||
<seealso/>
|
||||
|
Loading…
Reference in New Issue
Block a user