Variable ScanbotTiffGeneratorConst

ScanbotTiffGenerator: {
    generateFromDocument(params): Promise<string>;
    generateFromImages(params): Promise<string>;
}

Entry point for all TIFF generation features.

Type declaration

  • generateFromDocument:function
    • Creates a TIFF from the provided images with the specified configuration.

      Parameters

      • params: {
            documentUuid: string;
            tiffGeneratorParameters: TiffGeneratorParameters;
        }
        • documentUuid: string

          The Uuid of the document to be used for creating the TIFF.

        • tiffGeneratorParameters: TiffGeneratorParameters

          The configuration parameters for TIFF generation.

      Returns Promise<string>

      • The file uri pointing to the generated TIFF file.
  • generateFromImages:function
    • Creates a TIFF from the provided images with the specified configuration.

      Parameters

      Returns Promise<string>

      • The file uri pointing to the generated TIFF file.