TDrawPicture.SaveToString
| TDrawPicture = class (TDrawObject) | Interface de TDrawPicture | Exemples de TDrawPicture |
Description de SaveToString
Syntaxe
function SaveToString(): String
Remarques
Cette fonction sauve une image vers une chaine de caractères.
Exemples
var Img: TdrawPicture;
var s: String;
Img:=TDrawPicture.CreateNew('nom_image');
Img.LoadFromString(ResourceAsString('logo.png'));
s:=Img.SaveToString();
var s: String;
Img:=TDrawPicture.CreateNew('nom_image');
Img.LoadFromString(ResourceAsString('logo.png'));
s:=Img.SaveToString();