Document Solutions for Imaging
GrapeCity.Documents.Imaging.Skia Assembly / GrapeCity.Documents.Imaging.Skia Namespace / GcSkiaBitmap Class / Resize Method
The width of the resized image, in pixels.
The height of the resized image, in pixels.
The resizing filter quality.

In This Topic
    Resize Method (GcSkiaBitmap)
    In This Topic
    Creates a new GcSkiaBitmap containing a resized copy of the current image.
    Syntax
    'Declaration
     
    Public Function Resize( _
       ByVal targetWidth As System.Integer, _
       ByVal targetHeight As System.Integer, _
       Optional ByVal resizeQuality As ResizeQuality _
    ) As GcSkiaBitmap
    public GcSkiaBitmap Resize( 
       System.int targetWidth,
       System.int targetHeight,
       ResizeQuality resizeQuality
    )

    Parameters

    targetWidth
    The width of the resized image, in pixels.
    targetHeight
    The height of the resized image, in pixels.
    resizeQuality
    The resizing filter quality.

    Return Value

    The new GcSkiaBitmap containing the resized image.
    See Also