corelibraries-devexpress-dot-drawing-dot-dximageformat.md
Gets the bitmap (BMP) image format.
Namespace : DevExpress.Drawing
Assembly : DevExpress.Drawing.v25.2.dll
NuGet Package : DevExpress.Drawing
public static DXImageFormat Bmp { get; }
Public Shared ReadOnly Property Bmp As DXImageFormat
| Type | Description |
|---|---|
| DXImageFormat |
An object that indicates the bitmap image format.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Bmp property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
pdf-document-api-extract-images-from-document/CS/PdfProcessorGetImages/Program.cs#L32
if (bitmaps.Count != 0) {
bitmaps[0].Save(String.Format(@"{0}_{1}.bmp", x, y), DXImageFormat.Bmp);
bitmaps[0].Dispose();
pdf-document-api-export-document-to-multi-page-tiff-and-bitmap/CS/ExportToImage/Program.cs#L32
// Save the bitmaps.
image.Save("MyBitmap" + i + ".bmp", DXImageFormat.Bmp);
}
pdf-document-api-extract-images-from-document/VB/PdfProcessorGetImages/Program.vb#L33
If bitmaps.Count <> 0 Then
bitmaps(0).Save(String.Format("{0}_{1}.bmp", x, y), DXImageFormat.Bmp)
bitmaps(0).Dispose()
pdf-document-api-export-document-to-multi-page-tiff-and-bitmap/VB/ExportToImage/Program.vb#L22
' Save the bitmaps.
image.Save("MyBitmap" & i & ".bmp", DXImageFormat.Bmp)
Next
See Also