You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to PDFTron PDFNet SDK
Q: We discovered that pdfnet creates a temp file when building a new
PDF from nothing.
This temp file is located under the ASPNET user's folder. Our goal is
to force someway the file to be created elsewhere (ramdisk), how could
this be done?
------------------
A: Temp file is used to allw creation of huge PDF files without
hogging system memory.
You could use PDFNet.SetTempPath() to specify a different location for
temp files.
In case you do not want to use temp files (i.e. for everything in
memory), use PDFNet.SetDefaultDiskCachingEnabled(true). This option
may not be ideal if you have limited RAM or if you have 32-bit app
(which have limited address space).