TSVGBlip.Create Method
Overloads
TSVGBlip.Create(TBytes, Boolean)
Creates a new TSVGBlip with only the blip data.
Syntax
Unit: FlexCel.Core
class function TSVGBlip.Create(const aPictureData: TBytes; const CloneData: Boolean): TSVGBlip; static; overload;
Parameters
<-> | Parameter | Type | Description |
---|---|---|---|
const | aPictureData | TBytes | SVG image data. This is normally utf8-encoded. |
const | CloneData | Boolean | If true, aPictureData will be cloned before storing it. If false, aPictureData will be stored directly and it is your responsibility to not use aPictureData anymore. |
See also
TSVGBlip.Create(TBytes, string, string, Boolean)
Creates a new TSVGBlip.
Syntax
Unit: FlexCel.Core
class function TSVGBlip.Create(const aPictureData: TBytes; const aImageFileName: string; const aContentType: string; const CloneData: Boolean): TSVGBlip; static; overload;
Parameters
<-> | Parameter | Type | Description |
---|---|---|---|
const | aPictureData | TBytes | SVG image data. This is normally utf8-encoded. |
const | aImageFileName | string | Filename |
const | aContentType | string | Type of image. This is a mime type, likely TStandardMimeType.Svg |
const | CloneData | Boolean | If true, aPictureData will be cloned before storing it. If false, aPictureData will be stored directly and it is your responsibility to not use aPictureData anymore. |