gpt4 book ai didi

leadtools-sdk - 领导工具 : How to add image into PDF file in a specified location

转载 作者:行者123 更新时间:2023-12-02 03:34:54 24 4
gpt4 key购买 nike

我正在尝试使用 RasterImage 选项加载 PDF 文件并使用 Save 方法组合图像。但是我收到无效的 PDF 文件。

另外,想把图片放在PDF文件的底角。

任何代码片段都会有很大帮助。

谢谢

最佳答案

这是 LEADTOOLS 支持。由于您提到了“RasterImage”,我假设您正在使用我们的 .NET 类。

如果您的要求是在 PDF 页面的下角合并图像,然后将其保存为光栅(位图)PDF,一种方法是使用类似于以下的代码:

RasterImage pdfPage = _codecs.Load("Source.pdf");
RasterImage smallerImage = _codecs.Load("SmallImage.png");
LeadPoint combinePoint = new LeadPoint(pdfPage.Width - smallerImage.Width, pdfPage.Height - smallerImage.Height);
LeadRect destRect = new LeadRect(combinePoint, LeadSize.Create(smallerImage.Width, smallerImage.Height));
CombineCommand combine = new CombineCommand(smallerImage, destRect, LeadPoint.Create(0, 0), CombineCommandFlags.Destination0 | CombineCommandFlags.OperationAdd);
combine.Run(pdfPage);
_codecs.Save(pdfPage, "target.pdf", RasterImageFormat.RasPdfLzw, 24);

请注意,我们并不总是监控 StackOverflow 中与 LEAD 相关的问题,因此如果您对我们的工具包有技术问题,您可能需要使用我们的免费电子邮件、聊天或论坛支持服务。

关于leadtools-sdk - 领导工具 : How to add image into PDF file in a specified location,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24173846/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com