Temp directory in Aspose Imaging

Hi,
When I use Aspose.Imaging and convert a PNG to PDF using below code

PngImage pngImage = new PngImage(bais);
com.aspose.imaging.imageoptions.PdfOptions exportOptions = new
com.aspose.imaging.imageoptions.PdfOptions();
exportOptions.setPdfDocumentInfo(new PdfDocumentInfo());
pngImage.save(os, exportOptions);

I see that Aspose Imaging creates a temp folder in the below path
C:\Users\SushmaRaghupathi\AppData\Local\Temp\Aspose.Imaging

Is there a way I can change this? I see that in Aspose.words we can change it using java temp directory, the same applies here also? Is this possible in Imaging ?
System.setProperty(“java.io.tmpdir”, “D:/tmp”);
setLicense();

Also, what if we do not want to use java temp dir ? Can we give any other specific location?

@sushma1509
We have opened the following new ticket on adding an option to specify user temp folder location in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): IMAGINGNET-6941

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

Hi, @sushma1509
You can set the environment variable TEMP before running you program.
For example:

set TEMP=D:\Temp
java your-program