Hi,
When I convert any postscript file to TIFF, I get a blank page. I could not find a LoadPostScriptOptions nor a PostScriptFileType to attempt providing greater hints to the converter.
Things tried:
- Other output formats including PNG and PDF
- GroupDocs.Conversion versions 19.9 and 20.7
- Many PostScript files
I distilled down to this simpler version which produces the results when the input file is postscript.
public static void ConvertPostScript(string sourceFile, string newFile)
{
var convertOptions = new ImageConvertOptions
{
Format = ImageFileType.Tiff,
};
using (var converter = new Converter(() => File.OpenRead(sourceFile)))
{
converter.Convert(() => new FileStream(newFile, FileMode.OpenOrCreate), convertOptions);
}
}
Attached, please find one of the many files that produce a blank page (in a zip file to get it uploaded).
Thanks
-Jonathan
unicode.zip (92.3 KB)