TDrawPicture.SaveToString

TDrawPicture = class (TDrawObject)Interface de TDrawPictureExemples 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();
 

Classification

UGraphicalViews TDrawPicture