Do OCR'd TIFFs converted into PDF wrap the original TIFF, or convert the image type?

I had the same question as Making a new PDF with an embedded Tiff searchable - #6 by bns_group, but located Free Online PDF OCR - Convert PDF to Text as the solution.

Unfortunately, the tool isn’t usable for me due to You're invited to talk on Matrix, so I can’t test any advice provided yet. Regardless, I would like to confirm that when I convert a TIFF file to an OCR PDF,

  1. the PDF retains the original TIFF image
  2. at its original quality (not upscaled or downscaled)
  3. and with all of its metadata (at least, all which can be stored inside a PDF, so not none, and hopefully the rest transferred into the PDF)

inside it rather than stripping it and converting it into a different image type.

If you wonder why I ask, imagine if converting an OGG file into a FLAC or MKV container removed the attributes and degraded the quality of the file by converting it into something like an MP4, merely wrapped by the aforementioned container files. It would of course be unacceptable to any audiophile.

Thanks.

@RokeJulianLockhart

We need to gather the technical details in order to answer your questions. Therefore, an investigation ticket as OCRNET-765 has been generated in our issue tracking system to carry out the investigation. We will look into its details and let you know as soon as the ticket is resolved. Please be patient and spare us some time.

1 Like

@RokeJulianLockhart

Unfortunately, we can’t guarantee that all metadata will be saved in the output PDF. But we try to create an output PDF with the same original size and resolution. You can test our solution and decide it is suitable for you.

@asad.ali,

  1. Do you support transferring all the metadata that both TIFF and PDF support? Additionally, do you support Extended attributes - ArchWiki (I expect not)? I ask per Extended attributes - ArchWiki

    All major Linux file systems including Ext4, Btrfs, ZFS, and XFS support extended attributes.

  2. Apologies for being pedantic, but try and guarantee are different — is there a reason why image quality might be diminished?

  3. Apologies — I’m trying. The 20 MiB limit at Convert TIFF image to searchable PDF online has made it a bit difficult for the moment, though…

@RokeJulianLockhart

Thanks for the feedback. We have kept the ticket open for further investigation and we will soon return to you with the feedback against your recent comments.

1 Like

I’ve uploaded a TIFF with the configuration depicted at

to Convert TIFF image to searchable PDF online. The resultant PDF does not appear to be searchable. Additionally, its resolution is not even comparable to that of the original.

@RokeJulianLockhart

Would you kindly share the same TIFF for our reference too?

1 Like

@asad.ali, I don’t appear to be able to upload it to this forum, so it’s available at 20240203T141155GMT.

@RokeJulianLockhart

Thanks for providing the sample input. Online Aspose App implements Aspose.OCR Cloud API. However, this information will definitely help us in understanding your requirements more clearly and implement them in On-Premise API. We will let you know once some progress is made towards the resolution of the logged ticket. Please spare us some time.

1 Like

Hi, I’m a developer of the Aspose.OCR team (downloadable libraries). I converted your TIFF file to PDF using our library. You can evaluate the result in a PDF file. I can’t transfer your additional information from the TIFF file, but the size, physical size and resolution are the same as in the TIFF file.
Also, I want to note that we do not support all TIFF file formats, and we may not support some specific formats. However, we work with the majority.
Please use our download library to test your files and share your thoughts.
The code and the output PDF are attach
tiff_pdf.pdf (150.7 KB)

tiff_pdf.zip (1.0 KB)

      AsposeOcr api = new AsposeOcr();
      License lic = new License();
      lic.SetLicense(@"Aspose.OCR.Product.Family2024.lic");
      PreprocessingFilter filter = new PreprocessingFilter
            {
                //if you need
                // PreprocessingFilter.AutoSkew()
            };
       OcrInput input = new OcrInput(InputType.TIFF);
       input.Add("your.tiff");
        var result = api.Recognize(input, new RecognitionSettings
            {
                DetectAreasMode = DetectAreasMode.PHOTO
            });
      AsposeOcr.SaveMultipageDocument("D://result.pdf", SaveFormat.Pdf, result);
1 Like

@anna.pylaieva, I appear to get wildly different resolutions based upon the viewer:

  1. https://download.opensuse.org/repositories/openSUSE:/Factory/standard/x86_64/MozillaFirefox-122.0.1-1.1.x86_64.rpm

  2. https://download.opensuse.org/repositories/openSUSE:/Factory/standard/x86_64/gwenview5-23.08.4-2.1.x86_64.rpm

  3. https://download.opensuse.org/repositories/openSUSE:/Factory/standard/x86_64/okular-23.08.4-1.4.x86_64.rpm

but regardless, they’re definitely all lower (as the converted PDFs demonstrate versus the original) and that black and white border certainly weren’t there beforehand — it’s as if they’be been converted to JPEG (non-XL) and back to TIFF.

Regardless, I’m incredibly thankful for the code excerpt.

@RokeJulianLockhart

Thanks for the feedback. The ticket status is still open and we will further try to improve the functionality while keeping your comments in view. We will update you here once we have some more updates to share.