Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Documents Namespace > DocumentImages Class : DefaultBitsPerPixel Property |
public int DefaultBitsPerPixel {get; set;}
'Declaration
Public Property DefaultBitsPerPixel As Integer
'Usage
Dim instance As DocumentImages Dim value As Integer instance.DefaultBitsPerPixel = value value = instance.DefaultBitsPerPixel
public int getDefaultBitsPerPixel() public void setDefaultBitsPerPixel(int value)
Document format types such as Microsoft Word and Adobe Acrobat do not contain a physical bits per pixel and can be loaded at any value such as 1, 8, 24 or 32 etc. You can use DefaultBitsPerPixel to set the value used when loading such a page as a raster image. The default value is set depending on the RasterCodecs options and the format of the document and is usually set to 24 bits per pixel.
Raster format types such as TIFF, PNG and JPEG have physical size but can also be loaded at any bits per pixel and DefaultBitsPerPixel can also be used to change the value used when loading the raster image of a page. The default value is determined from the original image data.
For an example, refer to DocumentPage.GetImage(resolution).