ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Formats.CAD Namespace / ImGearCADPage Class / Rasterize Method / Rasterize(Int32,Int32,Int32) Method
Bitdepth for bitmap in returned ImGearRasterPage. Can take 8, 16, 24, 32.
resolutionX of new page.
resolutionY of new page.




In This Topic
    Rasterize(Int32,Int32,Int32) Method
    In This Topic
    Creates ImGearRasterPage from this page's current view, with set resolution.
    Syntax
    'Declaration
     
    Public Overloads Overrides Function Rasterize( _
       ByVal bitDepth As Integer, _
       ByVal resolutionX As Integer, _
       ByVal resolutionY As Integer _
    ) As ImGearRasterPage
    'Usage
     
    Dim instance As ImGearCADPage
    Dim bitDepth As Integer
    Dim resolutionX As Integer
    Dim resolutionY As Integer
    Dim value As ImGearRasterPage
     
    value = instance.Rasterize(bitDepth, resolutionX, resolutionY)
    public override ImGearRasterPage Rasterize( 
       int bitDepth,
       int resolutionX,
       int resolutionY
    )
    public: ImGearRasterPage* Rasterize( 
       int bitDepth,
       int resolutionX,
       int resolutionY
    ) override 
    public:
    ImGearRasterPage^ Rasterize( 
       int bitDepth,
       int resolutionX,
       int resolutionY
    ) override 

    Parameters

    bitDepth
    Bitdepth for bitmap in returned ImGearRasterPage. Can take 8, 16, 24, 32.
    resolutionX
    resolutionX of new page.
    resolutionY
    resolutionY of new page.

    Return Value

    Returns a ImageGear.Core.ImGearRasterPage of the current view, with set resolution.
    Remarks
    This function will not change this page's camera's ViewRect.
    See Also