我正在尝试使用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相关的问题,因此,如果您对我们的工具包有技术问题,则可能要使用我们的免费电子邮件,聊天或论坛支持服务。

10-07 18:10