Class XmpThumbnail
Thumbnail - A thumbnail image for a file.
Assembly: FacturXDotNet.dll
csharp
public class XmpThumbnail
Properties
Format
The image encoding. Defined value: JPEG.
csharp
public XmpThumbnailFormat? Format { get; set; }
Height
Height in pixels.
csharp
public int? Height { get; set; }
Width
Width in pixels.
csharp
public int? Width { get; set; }
Image
The full thumbnail image data, converted to base 64 notation(according to section 6.8 of RFC 2045). This is the thumbnail data typically found in a digital image, such as the value of tag 513 in a JPEG stream.
csharp
public string? Image { get; set; }