Table of Contents

Class CPImageBaseClass.ImageResizeResult

Namespace
Contensive.BaseClasses
Assembly
CPBase.dll

Result of an image resize operation, including actual output dimensions.

public class CPImageBaseClass.ImageResizeResult
Inheritance
CPImageBaseClass.ImageResizeResult
Inherited Members

Properties

height

Actual height of the output image in pixels.

public int height { get; set; }

Property Value

int

isNewSize

True if a new variant was created and imageAltSizes should be saved.

public bool isNewSize { get; set; }

Property Value

bool

path

CDN path to the resized image (unix slashes).

public string path { get; set; }

Property Value

string

width

Actual width of the output image in pixels.

public int width { get; set; }

Property Value

int