| Method and Description |
|---|
| org.beyka.tiffbitmapfactory.TiffConverter.convertBmpTiff(String, String, TiffConverter.ConverterOptions, IProgressListener)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffConverter.convertBmpTiffFd(int, int, ConverterOptions, IProgressListener).
Convert bmp to tiff file. Uses direct data read method, that decrease memory usage. |
| org.beyka.tiffbitmapfactory.TiffConverter.convertJpgTiff(String, String, TiffConverter.ConverterOptions, IProgressListener)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffConverter.convertJpgTiffFd(int, int, ConverterOptions, IProgressListener).
Convert jpeg to tiff file. Uses direct data read method, that decrease memory usage. |
| org.beyka.tiffbitmapfactory.TiffConverter.convertPngTiff(String, String, TiffConverter.ConverterOptions, IProgressListener)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffConverter.convertPngTiffFd(int, int, ConverterOptions, IProgressListener).
Convert png to tiff file. Uses direct data read method, that decrease memory usage. |
| org.beyka.tiffbitmapfactory.TiffConverter.convertTiffBmp(String, String, TiffConverter.ConverterOptions, IProgressListener)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffConverter.convertTiffBmpFd(int, int, ConverterOptions, IProgressListener).
Convert tiff to bmp file. Uses direct data read method, that decrease memory usage |
| org.beyka.tiffbitmapfactory.TiffConverter.convertTiffJpg(String, String, TiffConverter.ConverterOptions, IProgressListener)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffConverter.convertTiffJpgFd(int, int, ConverterOptions, IProgressListener).
Convert tiff to jpeg file. Uses direct data read method, that decrease memory usage |
| org.beyka.tiffbitmapfactory.TiffConverter.convertTiffPng(String, String, TiffConverter.ConverterOptions, IProgressListener)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffConverter.convertTiffPngFd(int, int, ConverterOptions, IProgressListener).
Convert tiff to png file. Uses direct data read method, that decrease memory usage |
| org.beyka.tiffbitmapfactory.TiffConverter.convertToTiff(File, File, TiffConverter.ConverterOptions, IProgressListener)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffConverter.convertToTiff(int, int, ConverterOptions, IProgressListener).
Convert any of supported formats from ImageFormat to tiff |
| org.beyka.tiffbitmapfactory.TiffConverter.convertToTiff(String, String, TiffConverter.ConverterOptions, IProgressListener)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffConverter.convertToTiff(int, int, ConverterOptions, IProgressListener).
Convert any of supported formats from ImageFormat to tiff |
| org.beyka.tiffbitmapfactory.TiffBitmapFactory.decodeFile(File)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffBitmapFactory.decodeFileDescriptor(int).
Decode file to bitmap with default options. If the specified file name is null,
or cannot be decoded into a bitmap, the function returns null. |
| org.beyka.tiffbitmapfactory.TiffBitmapFactory.decodeFile(File, TiffBitmapFactory.Options)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffBitmapFactory.decodeFileDescriptor(int, Options).
Decode file to bitmap with specified options. If the specified file name is null,
or cannot be decoded into a bitmap, the function returns null. |
| org.beyka.tiffbitmapfactory.TiffBitmapFactory.decodeFile(File, TiffBitmapFactory.Options, IProgressListener)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffBitmapFactory.decodeFileDescriptor(int, Options, IProgressListener).
Decode file to bitmap with specified options. If the specified file name is null,
or cannot be decoded into a bitmap, the function returns null. |
| org.beyka.tiffbitmapfactory.TiffBitmapFactory.decodePath(String)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffBitmapFactory.decodeFileDescriptor(int).
Decode path to bitmap with default options. If the specified file name is null,
or cannot be decoded into a bitmap, the function returns null. |
| org.beyka.tiffbitmapfactory.TiffBitmapFactory.decodePath(String, TiffBitmapFactory.Options)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffBitmapFactory.decodeFileDescriptor(int, Options).
Decode path to bitmap with specified options. If the specified file name is null,
or cannot be decoded into a bitmap, the function returns null. |
| org.beyka.tiffbitmapfactory.TiffBitmapFactory.decodePath(String, TiffBitmapFactory.Options, IProgressListener)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffBitmapFactory.decodeFileDescriptor(int, Options, IProgressListener).
Decode path to bitmap with specified options. If the specified file name is null,
or cannot be decoded into a bitmap, the function returns null. |
| org.beyka.tiffbitmapfactory.TiffConverter.getImageType(String)
Since Android Q is released. You can use this method with scoped storage.
Otherwise use
TiffConverter.getImageTypeFd(int).
Return type of file. |
| org.beyka.tiffbitmapfactory.TiffConverter.ConverterOptions.stop()
As of release 0.9.8.4, replaced by
Thread.interrupt() |
| org.beyka.tiffbitmapfactory.TiffBitmapFactory.Options.stop()
As of release 0.9.8.4, replaced by
Thread.interrupt() |