想要在PDF文档中提取签名和图像信息?有这篇Aspose.PDF for .NET干货教程就够了!

点点圈 提交于 2019-11-30 03:58:11

Aspose.PDF for .NET(点击下载)是一种高PDF处理和解析API,用于在跨平台应用程序中执行文档管理和操作任务。API可以轻松用于生成、修改、转换、渲染、保护和打印PDF文档,而无需使用Adobe Acrobat。此外,API还提供PDF压缩选项,表格创建和操作,图形和图像功能,广泛的超链接功能,印章和水印任务,扩展的安全控制和自定义字体处理。

在接下来的系列教程中,将为开发者带来Aspose.PDF for .NET的一系列使用教程,例如进行文档间的转换,如何标记PDF文件,如何使用表单和图表等等。

提取图像和签名信息

从签名域中提取图像


Aspose.PDF for .NET支持使用SignatureField类对PDF文件进行数字签名的功能,在签名文档时,可以为其设置图像SignatureAppearance。现在,此API还提供了提取签名信息以及与签名字段关联的图像的功能。

为了提取签名信息,ExtractImage(..)方法引入了SignatureField该类。请查看以下代码片段,其中演示了从SignatureField对象中提取图像的步骤:

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_AsposePdf_SecuritySignatures();

string input = dataDir+ @"ExtractingImage.pdf";
using (Document pdfDocument = new Document(input))
{
    foreach (Field field in pdfDocument.Form)
    {
        SignatureField sf = field as SignatureField;
        if (sf != null)
        {
            string outFile = dataDir+ @"output_out.jpg";
            using (Stream imageStream = sf.ExtractImage())
            {
                if (imageStream != null)
                {
                    using (System.Drawing.Image image = Bitmap.FromStream(imageStream))
                    {
                        image.Save(outFile, System.Drawing.Imaging.ImageFormat.Jpeg);
                    }
                }
            }
        }
    }
}

提取签名信息


Aspose.PDF for .NET支持使用SignatureField该类对PDF文件进行数字签名的功能。目前还可以确定证书的有效性,无法提取整个证书,可以提取的信息是公钥,指纹,发行者等。

为了提取签名信息,该ExtractCertificate(..)方法引入了SignatureField该类。请查看以下代码片段,其中演示了从SignatureField对象中提取证书的步骤:

// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_AsposePdf_SecuritySignatures();

string input = dataDir + "ExtractSignatureInfo.pdf";
using (Document pdfDocument = new Document(input))
{
    foreach (Field field in pdfDocument.Form)
    {
        SignatureField sf = field as SignatureField;
        if (sf != null)
        {
            Stream cerStream = sf.ExtractCertificate();
            if (cerStream != null)
            {
                using (cerStream)
                {
                    byte[] bytes = new byte[cerStream.Length];
                    using (FileStream fs = new FileStream(dataDir + @"input.cer", FileMode.CreateNew))
                    {
                        cerStream.Read(bytes, 0, bytes.Length);
                        fs.Write(bytes, 0, bytes.Length);
                    }
                }
            }
        }
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!