ImageGear23.Core Assembly > ImageGear.Processing Namespace > ImGearRasterProcessing Class > Export Method : Export(ImGearRasterPage,Int32,Int32) Method |
'Declaration Public Overloads Shared Function Export( _ ByVal page As ImGearRasterPage, _ ByVal ppmX As Integer, _ ByVal ppmY As Integer _ ) As Bitmap
'Usage Dim page As ImGearRasterPage Dim ppmX As Integer Dim ppmY As Integer Dim value As Bitmap value = ImGearRasterProcessing.Export(page, ppmX, ppmY)
System.Drawing.Bitmap
class.// Source rectangle to export. ImGearRectangle igRectangleSource = new ImGearRectangle(igRasterPage.DIB.Width, igRasterPage.DIB.Height); // Destination rectangle to export. ImGearRectangle igRectangleDestination = new ImGearRectangle(32, 32); ImGearChannelRange igChannelRange = new ImGearChannelRange(0, igRasterPage.DIB.ChannelCount); // Export the image to a bitmap and assign that to a standard picturebox. Bitmap bitmapExport = ImGearRasterProcessing.Export(igRasterPage, 2834, 2834); bitmapForm.pictureBox1.Image = bitmapExport;
' Source rectangle to export. Dim igRectangleSource As New ImGearRectangle(igRasterPage.DIB.Width, igRasterPage.DIB.Height) ' Destination rectangle to export. Dim igRectangleDestination As New ImGearRectangle(32, 32) Dim igChannelRange As New ImGearChannelRange(0, igRasterPage.DIB.ChannelCount) ' Export the image to a bitmap and assign that to a standard picturebox. Dim bitmapExport As Bitmap = ImGearRasterProcessing.Export(igRasterPage, 2834, 2834) bitmapForm1.PictureBox1.Image = bitmapExport