public class TIFFWriter
Adds ability to save images as TIFF
public TIFFWriter(@NotNull
io.scanbot.sdk.persistence.fileio.FileIOProcessor fileIOProcessor)
Adds ability to save images as TIFF
public boolean writeTIFFFromImages(@NotNull
android.graphics.Bitmap[] images,
@NotNull
java.io.File targetFile,
@NotNull
TIFFImageWriterParameters parameters)
Write single-page or multi-page TIFF file.
images - The array of source images from what TIFF file is to be created.targetFile - File for newly created TIFF filetrue if file created and saved successfully, false otherwise.@NotNull
public kotlin.Array[] writeTIFFFromImages(@NotNull
android.graphics.Bitmap[] images,
@NotNull
TIFFImageWriterParameters parameters)
Write single-page or multi-page TIFF file to the buffer.
images - The array of source images from what TIFF file is to be created.public boolean writeTIFFFromFiles(@NotNull
java.util.List<? extends java.io.File> sourceFiles,
boolean sourceFilesEncrypted,
@NotNull
java.io.File targetFile,
@NotNull
TIFFImageWriterParameters parameters)
Write single-page or multi-page TIFF file.
sourceFiles - The list of source files from what TIFF file is to be created.sourceFilesEncrypted - should be true if source files are encrypted, otherwise - falsetargetFile - File for newly created TIFF filetrue if file created and saved successfully, false otherwise.@NotNull public io.scanbot.sdk.persistence.fileio.FileIOProcessor getFileIOProcessor()