Hello,
We recently tried to convert WMF file to PDF and it fails
The code we use:
public void FileToPdf(Stream input, Stream output)
{
using (var image = Image.Load(input))
{
var exportOptions = new PdfOptions
{
PdfDocumentInfo = new Aspose.Imaging.FileFormats.Pdf.PdfDocumentInfo()
};
image.Save(output, exportOptions);
}
}
Files examples: Archive.zip (250.2 KB)
We also tried Imaging's online converter, it returned 500 error
Thanks!