Nevron Open Vision Documentation
Nevron.Nov.Graphics Namespace / NRaster Class / RasterizePainting Method
Width (in pixels) of the output raster.
Height (in pixels) of the output raster.
Raster resolution, measured in DIP.
A function that paints the scene that should be rasterized.


In This Topic
    RasterizePainting Method
    In This Topic
    Paints a 2D scene into a newly created raster with the specified dimensions.
    Syntax
    'Declaration
     
    
    Public Shared Function RasterizePainting( _
       ByVal width As System.Integer, _
       ByVal height As System.Integer, _
       ByVal resolution As System.Double, _
       ByVal paintDelegate As Nevron.Nov.Function(Of NPaintVisitor) _
    ) As NRaster
    'Usage
     
    
    Dim width As System.Integer
    Dim height As System.Integer
    Dim resolution As System.Double
    Dim paintDelegate As Nevron.Nov.Function(Of NPaintVisitor)
    Dim value As NRaster
     
    value = NRaster.RasterizePainting(width, height, resolution, paintDelegate)
    public static NRaster RasterizePainting( 
       System.int width,
       System.int height,
       System.double resolution,
       Nevron.Nov.Function<NPaintVisitor> paintDelegate
    )

    Parameters

    width
    Width (in pixels) of the output raster.
    height
    Height (in pixels) of the output raster.
    resolution
    Raster resolution, measured in DIP.
    paintDelegate
    A function that paints the scene that should be rasterized.

    Return Value

    A raster that contains the image painted in paintDelegate.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also