ZennoLab Assemblies Documentation
ImageProcessingResizeFromScreenshot Method (ZennoPoster)
Example 

Type: System.Int32

The port of the instance.

Type: System.String

The save file path.

Type: System.Int32

A new width of the image.

Type: System.Int32

A new height of the image.

Type: System.String

Units of dimension of the parameters. It can be "pixel" or "percent".

Type: System.String

If need to keep the aspect ratio then "true"; otherwise "false".

Type: System.String

If not increase size of the image then "true"; otherwise "false".

Performs resizing of the image from screenshot.
Syntax
public static void ImageProcessingResizeFromScreenshot( 
   int instancePort,
   string savePath,
   int width,
   int height,
   string units,
   bool keep,
   bool notIncImage
)

Parameters

instancePort

Type: System.Int32

The port of the instance.

savePath

Type: System.String

The save file path.

width

Type: System.Int32

A new width of the image.

height

Type: System.Int32

A new height of the image.

units

Type: System.String

Units of dimension of the parameters. It can be "pixel" or "percent".

keep

Type: System.String

If need to keep the aspect ratio then "true"; otherwise "false".

notIncImage

Type: System.String

If not increase size of the image then "true"; otherwise "false".

Remarks
The default value of the units parameter is "pixel".
Example
The following example shows call the ImageProcessingResizeFromScreenshot method.
// resize image from screenshot, the width and height in pixel
ZennoPoster.ImageProcessingResizeFromScreenshot(instance.Port, "C:\\ResultImage.jpeg", 100, 120, "pixel", true, false);
 
// resize image from screenshot, the width and height in percentage
ZennoPoster.ImageProcessingResizeFromScreenshot(instance.Port, "C:\\ResultImage.jpeg", 200, 200, "percent", true, false);
// resize image from screenshot, the width and height in pixel
ZennoLab\CommandCenter\ZennoPoster::ImageProcessingResizeFromScreenshot($instance->Port, "C:\\ResultImage.jpeg", 100, 120, "pixel", true, false);
 
// resize image from screenshot, the width and height in percentage
ZennoLab\CommandCenter\ZennoPoster::ImageProcessingResizeFromScreenshot($instance->Port, "C:\\ResultImage.jpeg", 200, 200, "percent", true, false);
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

ZennoPoster Class
ZennoPoster Members
ImageProcessingCropFromFile Method
ImageProcessingCropFromScreenshot Method
ImageProcessingCropFromUrl Method
ImageProcessingResizeFromFile Method
ImageProcessingResizeFromUrl Method
ImageProcessingRotateFromFile Method
ImageProcessingRotateFromScreenshot Method
ImageProcessingRotateFromUrl Method
ImageProcessingUntreatedFromFile Method
ImageProcessingUntreatedFromScreenshot Method
ImageProcessingUntreatedFromUrl Method
ImageProcessingWaterMarkImageFromFile Method
ImageProcessingWaterMarkImageFromScreenshot Method
ImageProcessingWaterMarkImageFromUrl Method
ImageProcessingWaterMarkTextFromFile Method
ImageProcessingWaterMarkTextFromScreenshot Method
ImageProcessingWaterMarkTextFromUrl Method
Instance Port Property
ImageProcessingMirrorFromFile Method
ImageProcessingMirrorFromScreenshot Method
ImageProcessingMirrorFromUrl Method

Send Feedback