capacitor-plugin-scanbot-sdk
    Preparing search index...

    Variable ScanbotTiffGeneratorConst

    ScanbotTiffGenerator: {
        generateFromDocument(
            params: {
                documentUuid: string;
                tiffGeneratorParameters: TiffGeneratorParameters;
            },
        ): Promise<string>;
        generateFromImages(
            params: {
                images: ImageInput[];
                tiffGeneratorParameters: TiffGeneratorParameters;
            },
        ): 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.