c# – 使用PDFSharp将图像叠加到PDF上

前端之家收集整理的这篇文章主要介绍了c# – 使用PDFSharp将图像叠加到PDF上前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
似乎找不到很多在这里.我有一个PDF,我想覆盖一个电子签名的图像.关于如何使用PDFSharp完成任何建议?

谢谢

解决方法

尝试以下
private void GeneratePDF(string filename,string imageLoc)
{
    PdfDocument document = new PdfDocument();

    // Create an empty page or load existing
    PdfPage page = document.AddPage();

    // Get an XGraphics object for drawing
    XGraphics gfx = XGraphics.FromPdfPage(page);
    DrawImage(gfx,imageLoc,50,250,250);

    // Save and start View
    document.Save(filename);
    Process.Start(filename);
}

void DrawImage(XGraphics gfx,string jpegSamplePath,int x,int y,int width,int height)
{
    XImage image = XImage.FromFile(jpegSamplePath);
    gfx.DrawImage(image,x,y,width,height);
}

这将生成一个新的PDF,附带页面顶部附近的指定图像.如果您需要使用现有文档,将PdfDocument构造函数更改为

PdfDocument document = new PdfDocument(filename);

其中filename是要加载的文件名称,并将PdfPage行更改为

PdfPage page = document.Pages[pageNum];

其中pageNum是您需要添加图像的页面的编号.

之后,它只是通过改变DrawImage的参数来适应页面上的定位.

DrawImage(gfx,250);

祝你好运!

原文链接:https://www.f2er.com/csharp/94965.html

猜你在找的C#相关文章