We are using and have a license for aspose pdf .net to convert pdf files to multipage tif images. Is there any setting in the aspose .net api that could be used to prevent the swedish characters Å,Ä and Ö from disappearing when converting a pdf file to a multipage tif?
Code used to convert
Document pdfDoc = new Document(@“C:\Temp\TillSkanningen.pdf”) Aspose version used is 21.9.0 the latest available on nuget.
Aspose.Pdf.Devices.Resolution resolution = new Aspose.Pdf.Devices.Resolution(300);
Aspose.Pdf.Devices.TiffSettings settings = new Aspose.Pdf.Devices.TiffSettings();
settings.Compression = Aspose.Pdf.Devices.CompressionType.CCITT4;
settings.Depth = Aspose.Pdf.Devices.ColorDepth.Format1bpp;
Aspose.Pdf.Devices.TiffDevice device = new Aspose.Pdf.Devices.TiffDevice(resolution, settings);
device.Process(pdfDoc, @"C:\Temp\OutputTiff.tif");