Uses of Class
com.aspose.imaging.Size

Packages that use Size
com.aspose.imaging   
com.aspose.imaging.interfaces   
 

Uses of Size in com.aspose.imaging
 

Methods in com.aspose.imaging that return Size
static Size Size.add(Size size1, Size size2)
           Adds the width and height of one Size structure to the width and height of another Size structure.
static Size Size.ceiling(SizeF size)
           Converts the specified SizeF structure to a Size structure by rounding the values of the Size structure to the next higher integer values.
 Size Size.Clone()
           
static Size Size.getEmpty()
           Gets a new instance of the Size structure that has Size.Width and Size.Height values set to zero.
 Size Image.getSize()
           Gets the image size.
 Size Rectangle.getSize()
           Gets the size of this Rectangle.
static Size Size.op_Addition(Size size1, Size size2)
           Adds the width and height of one Size structure to the width and height of another Size structure.
static Size Size.op_Subtraction(Size size1, Size size2)
           Subtracts the width and height of one Size structure from the width and height of another Size structure.
static Size Size.round(SizeF size)
           Converts the specified SizeF structure to a Size structure by rounding the values of the SizeF structure to the nearest integer values.
static Size Size.subtract(Size size1, Size size2)
           Subtracts the width and height of one Size structure from the width and height of another Size structure.
 Size SizeF.toSize()
           Converts a SizeF to a Size structure with truncated size values.
static Size Point.toSize(Point point)
           Converts the specified Point structure to a Size structure.
static Size Size.truncate(SizeF size)
           Converts the specified SizeF structure to a Size structure by truncating the values of the SizeF structure to the next lower integer values.
 

Methods in com.aspose.imaging with parameters of type Size
static PointF PointF.add(PointF point, Size size)
           Translates a given PointF by the specified Size.
static Point Point.add(Point point, Size size)
           Adds the specified Size to the specified Point.
static Size Size.add(Size size1, Size size2)
           Adds the width and height of one Size structure to the width and height of another Size structure.
 void Size.CloneTo(Size that)
           
static boolean Size.equals(Size obj1, Size obj2)
           
 void Rectangle.inflate(Size size)
           Inflates this Rectangle by the specified amount.
static PointF PointF.op_Addition(PointF point, Size size)
           Translates a PointF by a given Size.
static Point Point.op_Addition(Point point, Size size)
           Translates a Point by a given Size.
static Size Size.op_Addition(Size size1, Size size2)
           Adds the width and height of one Size structure to the width and height of another Size structure.
static boolean Size.op_Equality(Size size1, Size size2)
           Tests whether two Size structures are equal.
static boolean Size.op_Inequality(Size size1, Size size2)
           Tests whether two Size structures are different.
static PointF PointF.op_Subtraction(PointF point, Size size)
           Translates a PointF by the negative of a given Size.
static Point Point.op_Subtraction(Point point, Size size)
           Translates a Point by the negative of a given Size.
static Size Size.op_Subtraction(Size size1, Size size2)
           Subtracts the width and height of one Size structure from the width and height of another Size structure.
 void Rectangle.setSize(Size value)
           Sets the size of this Rectangle.
static PointF PointF.subtract(PointF point, Size size)
           Translates a PointF by the negative of a specified size.
static Point Point.subtract(Point point, Size size)
           Returns the result of subtracting specified Size from the specified Point.
static Size Size.subtract(Size size1, Size size2)
           Subtracts the width and height of one Size structure from the width and height of another Size structure.
static Point Size.toPoint(Size size)
           Converts the specified Size to a Point.
static SizeF Size.toSizeF(Size size)
           Converts the specified Size to a SizeF.
 

Constructors in com.aspose.imaging with parameters of type Size
Point(Size size)
           Initializes a new instance of the Point structure from the Size structure.
Rectangle(Point location, Size size)
           Initializes a new instance of the Rectangle structure with the specified location and size.
 

Uses of Size in com.aspose.imaging.interfaces
 

Methods in com.aspose.imaging.interfaces that return Size
 Size IObjectWithBounds.getSize()