I have following Code (IText 7):
PdfDocument pdfDoc = new PdfDocument(new PdfReader(url), new PdfWriter(urlTemp));
.....
pdfDoc.Close();
My Problem is, I would like to save the pdfDoc only, but not close. I like to save the changes when the user click on the button "Save". Then he can work so on, but itext says the document is closed. That´s logical for me, because i am call Close(). But exists maybe an Solution, that the document is only save or can I reopen the document?
Thank you!