ZennoLab Assemblies Documentation
ImageProcessingMirrorFromUrl Method (ZennoPoster)
Example 

Type: System.String

The url of the image.

Type: System.String

The save file path.

Type: System.String

The type of the mirror reflection. It can be "Horizontal", "Vertical", "HorizontalVertical". This parameter is not case-sensitive.

Performs the mirror reflection of the image from url.
Syntax
public static void ImageProcessingMirrorFromUrl( 
   string url,
   string savePath,
   string mirror
)

Parameters

url

Type: System.String

The url of the image.

savePath

Type: System.String

The save file path.

mirror

Type: System.String

The type of the mirror reflection. It can be "Horizontal", "Vertical", "HorizontalVertical". This parameter is not case-sensitive.

Example
The following example shows call the ImageProcessingMirrorFromUrl method.
// performs the horizontal mirror reflection of image from url and save it to newImage.jpg
ZennoPoster.ImageProcessingMirrorFromUrl("someurl.com/image.php", "C:\\newImage.jpg", "Horizontal");
// performs the vertical mirror reflection of image from url and save it to newImage.jpg
ZennoPoster.ImageProcessingMirrorFromUrl("someurl.com/image.php", "C:\\newImage.jpg", "Vertical");
// performs the horizontal and vertical mirror reflection of image from url and save it to newImage.jpg
ZennoPoster.ImageProcessingMirrorFromUrl("someurl.com/image.php", "C:\\newImage.jpg", "HorizontalVertical");
// performs the horizontal mirror reflection of image from url and save it to newImage.jpg
ZennoLab\CommandCenter\ZennoPoster::ImageProcessingMirrorFromUrl("someurl.com/image.php", "C:\\newImage.jpg", "Horizontal");
// performs the vertical mirror reflection of image from url and save it to newImage.jpg
ZennoLab\CommandCenter\ZennoPoster::ImageProcessingMirrorFromUrl("someurl.com/image.php", "C:\\newImage.jpg", "Vertical");
// performs the horizontal and vertical mirror reflection of image from url and save it to newImage.jpg
ZennoLab\CommandCenter\ZennoPoster::ImageProcessingMirrorFromUrl("someurl.com/image.php", "C:\\newImage.jpg", "HorizontalVertical");
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
ImageProcessingMirrorFromFile Method
ImageProcessingMirrorFromScreenshot Method
ImageProcessingResizeFromFile Method
ImageProcessingResizeFromScreenshot 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

Send Feedback