PDFのメタデータの可視性を管理する
メタデータカテゴリで何が見えるか?
メタデータはPDFを開ける人には誰でも見える。 これらの詳細には次の項目が含まれます:
// Assign metadata properties to a PDF document
Pdf.MetaData.Author = "John Doe"; // The author of the document
Pdf.MetaData.Keywords = "Key, Word"; // Keywords associated with the document
Pdf.MetaData.CreationDate = DateTime.Today; // The date the document was created
Pdf.MetaData.ModifiedDate = DateTime.Now; // The date and time the document was last modified
Pdf.MetaData.CustomProperties.Add("Test", "val"); // Custom properties for additional metadata
Pdf.MetaData.Producer = "test"; // The software used to produce the document
Pdf.MetaData.Subject = "test metadata"; // The subject of the document
Pdf.MetaData.Title = "test"; // The title of the document
Pdf.MetaData.Creator = "test"; // The original creator of the document
// Security settings for the PDF
Pdf.SecuritySettings.UserPassword = "ironuser"; // Password to open and view the PDF
Pdf.SecuritySettings.OwnerPassword = "ironowner"; // Password providing full permissions, including editing// Assign metadata properties to a PDF document
Pdf.MetaData.Author = "John Doe"; // The author of the document
Pdf.MetaData.Keywords = "Key, Word"; // Keywords associated with the document
Pdf.MetaData.CreationDate = DateTime.Today; // The date the document was created
Pdf.MetaData.ModifiedDate = DateTime.Now; // The date and time the document was last modified
Pdf.MetaData.CustomProperties.Add("Test", "val"); // Custom properties for additional metadata
Pdf.MetaData.Producer = "test"; // The software used to produce the document
Pdf.MetaData.Subject = "test metadata"; // The subject of the document
Pdf.MetaData.Title = "test"; // The title of the document
Pdf.MetaData.Creator = "test"; // The original creator of the document
// Security settings for the PDF
Pdf.SecuritySettings.UserPassword = "ironuser"; // Password to open and view the PDF
Pdf.SecuritySettings.OwnerPassword = "ironowner"; // Password providing full permissions, including editing- オーナーパスワードのみが設定されている場合、ユーザーはPDFメタデータ全体にアクセスでき、すべての文書プロパティを表示および修正することができる。
- ユーザーパスワードのみが設定されている場合、PDFはパスワードを知っている人だけが開くことができる。 ユーザーはメタデータのプロパティを表示できますが、メタデータの修正は制限されています。
BRACKET-i-OPEN--アドビ・アクロバット・プロは、UserPasswordが設定されている場合、それを提供することによってPDFメタデータを編集することをユーザーに許可します。 対照的に、Foxitのような他のPDFビューアは、PDFを開いたり見たりするためのUserPasswordに加えて、PDFメタデータを編集するためのOwnerPasswordをユーザーに要求します。






