本文介绍了使用C#编辑PDF文件的元数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在寻找方法或库来编辑pdf文件(如程序 becypdfmetaedit .
i searching for methods or libarys to edit metadata of a pdf file like the programm becypdfmetaedit.
我想写一个程序,我需要这个程序中的这个opton.也许您有一些C#示例.
I want to write a program and i need this opton in this program.Perhaps you have some samples for c#.
谢谢
推荐答案
使用PDF Sharp的方法如下:
Using PDF Sharp works like this:
using System;
using PdfSharp.Pdf;
using PdfSharp.Pdf.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main (string[] args)
{
Program p = new Program();
p.Test();
}
public void Test ()
{
PdfDocument document = PdfReader.Open ("Test.pdf");
document.Info.Author = "ME";
document.Save ("Result");
}
}
}
这篇关于使用C#编辑PDF文件的元数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!