Hi,
I would like to know if there’s anyway we could kill the thread even if it is saving a pdf document, and Aspose would release the created pdf.
Can InterruptionToken do it?
My code in working thread:
Aspose.Pdf.Generator.Section sec = pdfFile.Sections.Add();
image = Aspose.Pdf.Generator.Image.FromSystemImage(new Bitmap(srcFile));
// do something about image
sec.Paragraphs.Add(image);
pdfFile.Save(outputFile);
Thanks