C# 클래스 ImageResizer.FluentExtensions.TransformExpression

As expression for configuring image resize options
상속: ImageUrlBuilderExpression
파일 보기 프로젝트 열기: benfoster/ImageResizer.FluentExtensions

공개 메소드들

메소드 설명
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)

비공개 메소드들

메소드 설명
TransformExpression ( ImageUrlBuilder builder ) : System

메소드 상세

AutoRotate() 공개 메소드

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

FlipAfter() 공개 메소드

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

FlipBefore() 공개 메소드

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

Rotate() 공개 메소드

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

Rotate() 공개 메소드

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