ユーザー プロパティを に書き込もうとしましたがPDF-A
、ファイルをディスクに保存して開くと、結果ファイルは ではありませんPDF-A
。
Origin File : PDF/A
Add Custom Property
Destiny File : PDF
このコードを使用して、カスタム プロパティを追加します。
Dim reader As New iTextSharp.text.pdf.PdfReader(fl.FileBytes)
Using fs As New IO.FileStream(_destinyFile, IO.FileMode.Create, IO.FileAccess.Write, O.FileShare.None)
Using stamper As New iTextSharp.text.pdf.PdfStamper(reader, fs)
Dim info As Dictionary(Of String, String) = reader.Info
info.Add("myKey", "myValue")
stamper.MoreInfo = info
stamper.Close()
End Using
fs.Close()
End Using
reader.Close()
PDF-A ファイルにカスタム プロパティを追加するにはどうすればよいですか?