RasterSymbol.Image Property
Gets the image data of a 1-bit raster.
Syntax
public StringCollection Image { get; }
Property Value
Default: Empty collection.
The image data of a 1-bit raster.
Remarks
This property contains the image bits in of a single color RasterSymbol which are specified in the constructor. The format is a list of strings where each string is a row in the image in hexadecimal form. A colored pixel is a binary 1 and a transparent pixel a 0. The top row is specified first.
For example, this is a 5x5 pixel single color symbol looking like a square. The first column contains the bits in the image where a 1 represents a colored pixel and a 0 a transparent pixel. The second column contains the strings in the list in the Image property. Note that the image is padded with binary zeroes to the right to fill a whole byte.
Image pixels in binary form | Contents of the Image property |
---|---|
11111 |
"f8" |
If the RasterSymbol was created from an image file, this property returns an empty collection.
Platforms
Windows, Linux, Android