作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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/
我是一名优秀的程序员,十分优秀!