public final class Resolution
extends java.lang.Object
The resolution infomation of the barcode image
Constructor and Description |
---|
Resolution()
Initializes a new instance of the Resolution class.
|
Resolution(float dpix,
float dpiy,
int mode)
Initializes a new instance of the Resolution class.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj)
Determines whether two ResolutionResolution instances are equal.
|
float |
getDpiX()
Gets the horizontal resolution
|
float |
getDpiY()
Gets the vertical resolution
|
int |
getMode()
Gets the ResolutionModemode of the resolution
|
int |
hashCode()
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
|
static boolean |
op_Equality(Resolution left,
Resolution right)
Determines whether two ResolutionResolution instances are equal.
|
static boolean |
op_Inequality(Resolution left,
Resolution right)
Determines whether two ResolutionResolution instances are not equal.
|
void |
setDpiX(float value)
Sets the horizontal resolution
|
void |
setDpiY(float value)
Sets the vertical resolution
|
void |
setMode(int value)
Sets the ResolutionModemode of the resolution
|
java.lang.String |
toString()
Returns a string that represents the current ResolutionResolution instance.
|
public Resolution()
Initializes a new instance of the Resolution class.
public Resolution(float dpix, float dpiy, int mode)
Initializes a new instance of the Resolution class.
dpix
- The horizontal resolution.dpiy
- The vertical resolution.mode
- The ResolutionModeResolutionMode.public float getDpiX()
Gets the horizontal resolution
java.lang.IllegalArgumentException
- The DpiX parameter value is less than than 0.public void setDpiX(float value)
Sets the horizontal resolution
java.lang.IllegalArgumentException
- The DpiX parameter value is less than than 0.public float getDpiY()
Gets the vertical resolution
com.aspose.ms.System.ArgumentException
- The DpiY parameter value is less than than 0.
public void setDpiY(float value)
Sets the vertical resolution
com.aspose.ms.System.ArgumentException
- The DpiY parameter value is less than than 0.
public int getMode()
Gets the ResolutionModemode of the resolution
public void setMode(int value)
Sets the ResolutionModemode of the resolution
public java.lang.String toString()
Returns a string that represents the current ResolutionResolution instance.
toString
in class java.lang.Object
public static boolean op_Equality(Resolution left, Resolution right)
Determines whether two ResolutionResolution instances are equal.
left
- The ResolutionResolution instance on the leftright
- The ResolutionResolution instance on the rightpublic static boolean op_Inequality(Resolution left, Resolution right)
Determines whether two ResolutionResolution instances are not equal.
left
- The ResolutionResolution instance on the leftright
- The ResolutionResolution instance on the rightpublic boolean equals(java.lang.Object obj)
Determines whether two ResolutionResolution instances are equal.
equals
in class java.lang.Object
obj
- The ResolutionResolution} instance on the leftpublic int hashCode()
Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
hashCode
in class java.lang.Object