ImageGear for .NET
Export(ImGearRasterPage,Int32,Int32) Method
See Also  Example Send Feedback
ImageGear21.Core Assembly > ImageGear.Processing Namespace > ImGearRasterProcessing Class > Export Method : Export(ImGearRasterPage,Int32,Int32) Method




page
Raster page to be exported.
ppmX
Specifies horizontal resolution of resulting GDI+ bitmap object. Measurement unit is PPM, i.e., pixels per meter.
ppmY
Specifies vertical resolution of resulting GDI+ bitmap object. Measurement unit is PPM, i.e., pixels per meter.

Glossary Item Box

Exports content of raster page to managed GDI+ image.

Syntax

 
Visual Basic
C#
Managed Extensions for C++
C++/CLI
 
 

Parameters

page
Raster page to be exported.
ppmX
Specifies horizontal resolution of resulting GDI+ bitmap object. Measurement unit is PPM, i.e., pixels per meter.
ppmY
Specifies vertical resolution of resulting GDI+ bitmap object. Measurement unit is PPM, i.e., pixels per meter.

Return Value

An instance of System.Drawing.Bitmap class.

Remarks

Since Bitmap stores pixels in RGB or Indexed format only, color space conversion is used to transfer image data.

Example

C#Copy Code
// 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;
Visual BasicCopy Code
' 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

See Also

©2013. Accusoft Corporation. All Rights Reserved.