C# Class ImageResizer.FluentExtensions.TransformExpression

As expression for configuring image resize options
Inheritance: ImageUrlBuilderExpression
Afficher le fichier Open project: benfoster/ImageResizer.FluentExtensions

Méthodes publiques

Méthode 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

Méthode Description
TransformExpression ( ImageUrlBuilder builder ) : System

Method Details

AutoRotate() public méthode

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

FlipAfter() public méthode

Flips the image after everything is done
public FlipAfter ( FlipType flipType ) : TransformExpression
flipType FlipType
Résultat TransformExpression

FlipBefore() public méthode

Flips the image prior to processing
public FlipBefore ( FlipType flipType ) : TransformExpression
flipType FlipType
Résultat TransformExpression

Rotate() public méthode

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

Rotate() public méthode

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