Packages

 

com.aspose.psd

Interfaces

Classes

Exceptions

com.aspose.psd

Class SizeF

  • java.lang.Object
    • com.aspose.ms.System.ValueType<T>
      • com.aspose.ms.lang.Struct<SizeF>
        • com.aspose.psd.SizeF


  • public class SizeF
    extends com.aspose.ms.lang.Struct<SizeF>

    Stores an ordered pair of floating-point numbers, typically the width and height of a rectangle.

    • Constructor Summary

      Constructors 
      Constructor and Description
      SizeF() 
      SizeF(float width, float height)
      Initializes a new instance of the Aspose.Imaging.SizeF structure from the specified dimensions.
      SizeF(PointF point)
      Initializes a new instance of the Aspose.Imaging.SizeF structure from the specified Aspose.Imaging.PointF.
      SizeF(SizeF size)
      Initializes a new instance of the Aspose.Imaging.SizeF structure from the specified Aspose.Imaging.SizeF.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      static SizeF add(SizeF size1, SizeF size2)
      Adds the width and height of one Aspose.Imaging.SizeF structure to the width and height of another Aspose.Imaging.SizeF structure.
      SizeF Clone() 
      void CloneTo(SizeF that) 
      boolean equals(Object obj)
      Tests to see whether the specified object is a Aspose.Imaging.SizeF with the same dimensions as this Aspose.Imaging.SizeF.
      static SizeF getEmpty()
      Gets a new instance of the Aspose.Imaging.SizeF structure that has Aspose.Imaging.SizeF.Width and Aspose.Imaging.SizeF.Height values set to zero.
      float getHeight()
      Gets or sets the vertical component of this Aspose.Imaging.SizeF.
      float getWidth()
      Gets or sets the horizontal component of this Aspose.Imaging.SizeF.
      int hashCode()
      Returns a hash code for this Aspose.Imaging.Size structure.
      boolean isEmpty()
      Gets a value indicating whether this Aspose.Imaging.SizeF has zero width and height.
      static boolean isEquals(SizeF obj1, SizeF obj2) 
      static SizeF op_Addition(SizeF size1, SizeF size2)
      Adds the width and height of one Aspose.Imaging.SizeF structure to the width and height of another Aspose.Imaging.SizeF structure.
      static boolean op_Equality(SizeF size1, SizeF size2)
      Tests whether two Aspose.Imaging.SizeF structures are equal.
      static boolean op_Inequality(SizeF size1, SizeF size2)
      Tests whether two Aspose.Imaging.SizeF structures are different.
      static SizeF op_Subtraction(SizeF size1, SizeF size2)
      Subtracts the width and height of one Aspose.Imaging.SizeF structure from the width and height of another Aspose.Imaging.SizeF structure.
      void setHeight(float value)
      Gets or sets the vertical component of this Aspose.Imaging.SizeF.
      void setWidth(float value)
      Gets or sets the horizontal component of this Aspose.Imaging.SizeF.
      static SizeF subtract(SizeF size1, SizeF size2)
      Subtracts the width and height of one Aspose.Imaging.SizeF structure from the width and height of another Aspose.Imaging.SizeF structure.
      static PointF to_PointF(SizeF size)
      Converts the specified Aspose.Imaging.SizeF to a Aspose.Imaging.PointF.
      PointF toPointF()
      Converts a Aspose.Imaging.SizeF to a Aspose.Imaging.PointF.
      Size toSize()
      Converts a Aspose.Imaging.SizeF to a Aspose.Imaging.Size structure with truncated size values.
      String toString()
      Creates a human-readable string that represents this Aspose.Imaging.SizeF.
    • Constructor Detail

      • SizeF

        public SizeF()
      • SizeF

        public SizeF(SizeF size)

        Initializes a new instance of the Aspose.Imaging.SizeF structure from the specified Aspose.Imaging.SizeF.

        Parameters:
        size - The Aspose.Imaging.SizeF from which to create the new Aspose.Imaging.SizeF.
      • SizeF

        public SizeF(PointF point)

        Initializes a new instance of the Aspose.Imaging.SizeF structure from the specified Aspose.Imaging.PointF.

        Parameters:
        point - The Aspose.Imaging.PointF from which to initialize this Aspose.Imaging.SizeF.
      • SizeF

        public SizeF(float width,
                     float height)

        Initializes a new instance of the Aspose.Imaging.SizeF structure from the specified dimensions.

        Parameters:
        width - The width component of the new Aspose.Imaging.SizeF.
        height - The height component of the new Aspose.Imaging.SizeF.
    • Method Detail

      • getEmpty

        public static SizeF getEmpty()

        Gets a new instance of the Aspose.Imaging.SizeF structure that has Aspose.Imaging.SizeF.Width and Aspose.Imaging.SizeF.Height values set to zero.

      • isEmpty

        public boolean isEmpty()

        Gets a value indicating whether this Aspose.Imaging.SizeF has zero width and height.

        Returns:
        This property returns true when this Aspose.Imaging.SizeF has both a width and height of zero; otherwise, false.
      • getWidth

        public float getWidth()

        Gets or sets the horizontal component of this Aspose.Imaging.SizeF.

        Returns:
        The horizontal component of this Aspose.Imaging.SizeF, typically measured in pixels.
      • setWidth

        public void setWidth(float value)

        Gets or sets the horizontal component of this Aspose.Imaging.SizeF.

      • getHeight

        public float getHeight()

        Gets or sets the vertical component of this Aspose.Imaging.SizeF.

        Returns:
        The vertical component of this Aspose.Imaging.SizeF, typically measured in pixels.
      • setHeight

        public void setHeight(float value)

        Gets or sets the vertical component of this Aspose.Imaging.SizeF.

      • op_Addition

        public static SizeF op_Addition(SizeF size1,
                                        SizeF size2)

        Adds the width and height of one Aspose.Imaging.SizeF structure to the width and height of another Aspose.Imaging.SizeF structure.

        Parameters:
        size1 - The first Aspose.Imaging.SizeF to add.
        size2 - The second Aspose.Imaging.SizeF to add.
        Returns:
        A Aspose.Imaging.SizeF structure that is the result of the addition operation.
      • op_Subtraction

        public static SizeF op_Subtraction(SizeF size1,
                                           SizeF size2)

        Subtracts the width and height of one Aspose.Imaging.SizeF structure from the width and height of another Aspose.Imaging.SizeF structure.

        Parameters:
        size1 - The Aspose.Imaging.SizeF on the left side of the subtraction operator.
        size2 - The Aspose.Imaging.SizeF on the right side of the subtraction operator.
        Returns:
        A Aspose.Imaging.SizeF that is the result of the subtraction operation.
      • op_Equality

        public static boolean op_Equality(SizeF size1,
                                          SizeF size2)

        Tests whether two Aspose.Imaging.SizeF structures are equal.

        Parameters:
        size1 - The Aspose.Imaging.SizeF structure on the left side of the equality operator.
        size2 - The Aspose.Imaging.SizeF structure on the right of the equality operator.
        Returns:
        This operator returns true if size1 and size2 have equal width and height; otherwise, false.
      • op_Inequality

        public static boolean op_Inequality(SizeF size1,
                                            SizeF size2)

        Tests whether two Aspose.Imaging.SizeF structures are different.

        Parameters:
        size1 - The Aspose.Imaging.SizeF structure on the left of the inequality operator.
        size2 - The Aspose.Imaging.SizeF structure on the right of the inequality operator.
        Returns:
        This operator returns true if size1 and size2 differ either in width or height; false if size1 and size2 are equal.
      • to_PointF

        public static PointF to_PointF(SizeF size)

        Converts the specified Aspose.Imaging.SizeF to a Aspose.Imaging.PointF.

        Parameters:
        size - The Aspose.Imaging.SizeF structure to be converted
        Returns:
        The Aspose.Imaging.PointF structure to which this operator converts.
      • add

        public static SizeF add(SizeF size1,
                                SizeF size2)

        Adds the width and height of one Aspose.Imaging.SizeF structure to the width and height of another Aspose.Imaging.SizeF structure.

        Parameters:
        size1 - The first Aspose.Imaging.SizeF to add.
        size2 - The second Aspose.Imaging.SizeF to add.
        Returns:
        A Aspose.Imaging.SizeF structure that is the result of the addition operation.
      • subtract

        public static SizeF subtract(SizeF size1,
                                     SizeF size2)

        Subtracts the width and height of one Aspose.Imaging.SizeF structure from the width and height of another Aspose.Imaging.SizeF structure.

        Parameters:
        size1 - The Aspose.Imaging.SizeF structure on the left side of the subtraction operator.
        size2 - The Aspose.Imaging.SizeF structure on the right side of the subtraction operator.
        Returns:
        The Aspose.Imaging.SizeF that is a result of the subtraction operation.
      • toPointF

        public PointF toPointF()

        Converts a Aspose.Imaging.SizeF to a Aspose.Imaging.PointF.

        Returns:
        Returns a Aspose.Imaging.PointF structure.
      • toSize

        public Size toSize()

        Converts a Aspose.Imaging.SizeF to a Aspose.Imaging.Size structure with truncated size values.

        Returns:
        Returns a Aspose.Imaging.Size structure.
      • equals

        public boolean equals(Object obj)

        Tests to see whether the specified object is a Aspose.Imaging.SizeF with the same dimensions as this Aspose.Imaging.SizeF.

        Overrides:
        equals in class Object
        Parameters:
        obj - The System.Object to test.
        Returns:
        This method returns true if obj is a Aspose.Imaging.SizeF and has the same width and height as this Aspose.Imaging.SizeF; otherwise, false.
      • hashCode

        public int hashCode()

        Returns a hash code for this Aspose.Imaging.Size structure.

        Overrides:
        hashCode in class Object
        Returns:
        An integer value that specifies a hash value for this Aspose.Imaging.Size structure.
      • toString

        public String toString()

        Creates a human-readable string that represents this Aspose.Imaging.SizeF.

        Overrides:
        toString in class Object
        Returns:
        A string that represents this Aspose.Imaging.SizeF.
      • CloneTo

        public void CloneTo(SizeF that)
        Specified by:
        CloneTo in class com.aspose.ms.System.ValueType<SizeF>
      • Clone

        public SizeF Clone()
        Specified by:
        Clone in class com.aspose.ms.System.ValueType<SizeF>
      • isEquals

        public static boolean isEquals(SizeF obj1,
                                       SizeF obj2)