Uses of Class
org.apache.commons.imaging.common.RationalNumber
-
Packages that use RationalNumber Package Description org.apache.commons.imaging.common Provides utility classes that are employed across multiple image formats and sub-packages.org.apache.commons.imaging.formats.tiff Provides classes and methods for reading and writing Tagged Image File Format (TIFF) files.org.apache.commons.imaging.formats.tiff.taginfos Classes for the TIFF tags.org.apache.commons.imaging.formats.tiff.write TIFF writers. -
-
Uses of RationalNumber in org.apache.commons.imaging.common
Methods in org.apache.commons.imaging.common that return RationalNumber Modifier and Type Method Description RationalNumberRationalNumber. negate()Negates the value of the RationalNumber.static RationalNumberByteConversions. toRational(byte[] bytes, ByteOrder byteOrder, boolean unsignedType)Interprets the content of a specified bytes array to create an instance of the RationalNumber class.static RationalNumber[]ByteConversions. toRationals(byte[] bytes, ByteOrder byteOrder, boolean unsignedType)static RationalNumberRationalNumber. valueOf(double value)Calculate rational number using successive approximations.Methods in org.apache.commons.imaging.common with parameters of type RationalNumber Modifier and Type Method Description static byte[]ByteConversions. toBytes(RationalNumber[] values, ByteOrder byteOrder)static byte[]ByteConversions. toBytes(RationalNumber value, ByteOrder byteOrder) -
Uses of RationalNumber in org.apache.commons.imaging.formats.tiff
Fields in org.apache.commons.imaging.formats.tiff declared as RationalNumber Modifier and Type Field Description RationalNumberTiffImageMetadata.GPSInfo. latitudeDegreesRationalNumberTiffImageMetadata.GPSInfo. latitudeMinutesRationalNumberTiffImageMetadata.GPSInfo. latitudeSecondsRationalNumberTiffImageMetadata.GPSInfo. longitudeDegreesRationalNumberTiffImageMetadata.GPSInfo. longitudeMinutesRationalNumberTiffImageMetadata.GPSInfo. longitudeSecondsMethods in org.apache.commons.imaging.formats.tiff that return RationalNumber Modifier and Type Method Description RationalNumberTiffDirectory. getFieldValue(TagInfoRational tag)RationalNumber[]TiffDirectory. getFieldValue(TagInfoRationals tag, boolean mustExist)RationalNumberTiffDirectory. getFieldValue(TagInfoSRational tag)RationalNumber[]TiffDirectory. getFieldValue(TagInfoSRationals tag, boolean mustExist)RationalNumber[]TiffImageMetadata. getFieldValue(TagInfoRationals tag)RationalNumber[]TiffImageMetadata. getFieldValue(TagInfoSRationals tag)Constructors in org.apache.commons.imaging.formats.tiff with parameters of type RationalNumber Constructor Description GPSInfo(String latitudeRef, String longitudeRef, RationalNumber latitudeDegrees, RationalNumber latitudeMinutes, RationalNumber latitudeSeconds, RationalNumber longitudeDegrees, RationalNumber longitudeMinutes, RationalNumber longitudeSeconds) -
Uses of RationalNumber in org.apache.commons.imaging.formats.tiff.taginfos
Methods in org.apache.commons.imaging.formats.tiff.taginfos that return RationalNumber Modifier and Type Method Description RationalNumberTagInfoRational. getValue(ByteOrder byteOrder, byte[] bytes)RationalNumber[]TagInfoRationals. getValue(ByteOrder byteOrder, byte[] bytes)RationalNumberTagInfoSRational. getValue(ByteOrder byteOrder, byte[] bytes)RationalNumber[]TagInfoSRationals. getValue(ByteOrder byteOrder, byte[] bytes)Methods in org.apache.commons.imaging.formats.tiff.taginfos with parameters of type RationalNumber Modifier and Type Method Description byte[]TagInfoRational. encodeValue(ByteOrder byteOrder, RationalNumber value)byte[]TagInfoRationals. encodeValue(ByteOrder byteOrder, RationalNumber... values)byte[]TagInfoShortOrLongOrRational. encodeValue(ByteOrder byteOrder, RationalNumber... values)byte[]TagInfoShortOrRational. encodeValue(ByteOrder byteOrder, RationalNumber... values)byte[]TagInfoSRational. encodeValue(ByteOrder byteOrder, RationalNumber value)byte[]TagInfoSRationals. encodeValue(ByteOrder byteOrder, RationalNumber... values) -
Uses of RationalNumber in org.apache.commons.imaging.formats.tiff.write
Methods in org.apache.commons.imaging.formats.tiff.write with parameters of type RationalNumber Modifier and Type Method Description voidTiffOutputDirectory. add(TagInfoAsciiOrRational tagInfo, RationalNumber... values)voidTiffOutputDirectory. add(TagInfoRational tagInfo, RationalNumber value)voidTiffOutputDirectory. add(TagInfoRationals tagInfo, RationalNumber... values)voidTiffOutputDirectory. add(TagInfoShortOrLongOrRational tagInfo, RationalNumber... values)voidTiffOutputDirectory. add(TagInfoShortOrRational tagInfo, RationalNumber... values)voidTiffOutputDirectory. add(TagInfoSRational tagInfo, RationalNumber value)voidTiffOutputDirectory. add(TagInfoSRationals tagInfo, RationalNumber... values)
-