C# Class ImageResizer.FluentExtensions.TransformExpression

As expression for configuring image resize options
Inheritance: ImageUrlBuilderExpression
Show file Open project: benfoster/ImageResizer.FluentExtensions

Public Methods

Method Description
AutoRotate ( ) : TransformExpression

Automatically rotates the image based on the EXIF info from the camera. (Requires the AutoRotate plugin)

FlipAfter ( FlipType flipType ) : TransformExpression

Flips the image after everything is done

FlipBefore ( FlipType flipType ) : TransformExpression

Flips the image prior to processing

Rotate ( RotateType rotateType ) : TransformExpression

Rotates the source image prior to processing (only 90 degree intervals)

Rotate ( int degrees ) : TransformExpression

Rotate the image any arbitrary angle (occurs after cropping)

Private Methods

Method Description
TransformExpression ( ImageUrlBuilder builder ) : System

Method Details

AutoRotate() public method

Automatically rotates the image based on the EXIF info from the camera. (Requires the AutoRotate plugin)
public AutoRotate ( ) : TransformExpression
return TransformExpression

FlipAfter() public method

Flips the image after everything is done
public FlipAfter ( FlipType flipType ) : TransformExpression
flipType FlipType
return TransformExpression

FlipBefore() public method

Flips the image prior to processing
public FlipBefore ( FlipType flipType ) : TransformExpression
flipType FlipType
return TransformExpression

Rotate() public method

Rotates the source image prior to processing (only 90 degree intervals)
public Rotate ( RotateType rotateType ) : TransformExpression
rotateType RotateType The type of rotation to perform
return TransformExpression

Rotate() public method

Rotate the image any arbitrary angle (occurs after cropping)
public Rotate ( int degrees ) : TransformExpression
degrees int The angle of which to rotate the image
return TransformExpression