我有大量带矢量图形的PDF(主要是直线和曲线),需要以某种方式进行批量编辑以修改其基本属性(例如边角类型和端部类型)。这也可能适用于编辑厚度和颜色。
我已经在使用iTextSharp编辑这些PDF,以便将图像插入每个文件的背景中,但是我没有太多关于曲线和直线的文档,也找不到自己编辑直线的方法。我也对其他库也开放,但是我还没有找到一个明确地解决如何编辑现有曲线和线条,仅绘制新曲线和线条的库。
using iTextSharp.text;
using iTextSharp.text.pdf;
// open the reader
PdfReader reader = new PdfReader(refPath);
Rectangle size = reader.GetPageSizeWithRotation(1);
Document document = new Document(size);
// open the writer
FileStream fs = new FileStream(path, FileMode.Create, FileAccess.Write);
PdfWriter writer = PdfWriter.GetInstance(document, fs);
document.Open();
// the pdf content
PdfContentByte cb = writer.DirectContent;
//get an image to be inserted.
var screenshot = System.Drawing.Image.FromFile("somefile.png");
//Create iTextSharp image
Image bg = Image.GetInstance(screenshot, System.Drawing.Imaging.ImageFormat.Png);
bg.SetDpi(dpi, dpi);
bg.ScaleToFit(size);
bg.SetAbsolutePosition(0, 0);
bg.Alignment = Image.UNDERLYING;
cb.AddImage(bg);
/**
Get and edit linework properties in here somewhere???
**/
// create the new page and add it to the pdf
PdfImportedPage page = writer.GetImportedPage(reader, 1);
cb.AddTemplate(page, 0, 0);
// close the streams
document.Close();
fs.Close();
writer.Close();
reader.Close();
理想情况下,所有行的输出如下所示:
任何想法都值得赞赏!
答案 0 :(得分:1)
尝试通过一种适合的格式来回程这种事情很诱人。因此,也许是转换为SVG,然后进行处理,然后再转换为PDF。
但是,我鼓励您远离这种诱惑,因为这样的往返不可避免地会导致失真和损失。
相反,我鼓励您直接使用原始PDF运算符流。一开始它看起来有些令人生畏,但实际上,一旦掌握了它,它就非常简单。例如(百分比表示评论),
q % save state
0 0 10 10 re % define rectangle path
s % stroke
Q % restore state
Adobe PDF规范将为您提供所有详细信息。它很大,但是写得很清楚。有关所有运算符的列表以及指向相关部分的链接,请参见附件A。
https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/PDF32000_2008.pdf
那么问题就变成了如何使用现有内容流?
解析这些东西并非易事,因此我建议您使用工具。例如,ABCpdf将允许您将流分解为原子,修改序列,然后将其放回到原始文档中。有关代码示例,请参见
就解析和操作而言,这是一个非常优雅而强大的机制。我确定还有其他工具可以允许类似的事情,但我对ABCpdf有所了解。 :-)
答案 1 :(得分:0)
您的图像显示您要编辑所有路径中的线帽和线接头以使其圆滑。
不幸的是,您没有共享代表性的示例文件,因此我不得不用不同的cap和join样式以及提醒您的路径形式来构建自己的文件:
我建议您使用this answer中的通用PdfContentStreamEditor
来完成您的任务,因为它可以完成所有繁重的工作,我们可以专注于手头的任务。
因此,我们的流编辑器实现必须做什么?它必须将上限和合并样式设置为“圆形”,并防止覆盖这些设置。查看PDF规范,我们看到上限和联接样式是当前图形状态的参数,可以分别使用 J 和 j 指令直接设置,也可以通过<图形状态参数字典中的strong> LC 和 LJ 条目。
因此,我们可以简单地实现流编辑器,方法是首先初始化cap和join样式以四舍五入,然后删除所有 J 和 j 指令并重新初始化cap和join每个图形状态 gs 指令后的样式。
class PathMakeCapAndJoinRound : PdfContentStreamEditor
{
protected override void Write(PdfContentStreamProcessor processor, PdfLiteral operatorLit, List<PdfObject> operands)
{
if (start)
{
initializeCapAndJoin(processor);
start = false;
}
if (CAP_AND_JOIN_OPERATORS.Contains(operatorLit.ToString()))
{
return;
}
base.Write(processor, operatorLit, operands);
if (GSTATE_OPERATOR == operatorLit.ToString())
{
initializeCapAndJoin(processor);
}
}
void initializeCapAndJoin(PdfContentStreamProcessor processor)
{
PdfLiteral operatorLit = new PdfLiteral("J");
List<PdfObject> operands = new List<PdfObject> { new PdfNumber(PdfContentByte.LINE_CAP_ROUND), operatorLit };
base.Write(processor, operatorLit, operands);
operatorLit = new PdfLiteral("j");
operands = new List<PdfObject> { new PdfNumber(PdfContentByte.LINE_JOIN_ROUND), operatorLit };
base.Write(processor, operatorLit, operands);
}
List<string> CAP_AND_JOIN_OPERATORS = new List<string> { "j", "J" };
string GSTATE_OPERATOR = "gs";
bool start = true;
}
像这样将其应用于上面的PDF
using (PdfReader pdfReader = new PdfReader(testDocument))
using (PdfStamper pdfStamper = new PdfStamper(pdfReader, new FileStream(@"Paths-Rounded.pdf", FileMode.Create, FileAccess.Write), (char)0, true))
{
pdfStamper.RotateContents = false;
PdfContentStreamEditor editor = new PathMakeCapAndJoinRound();
for (int i = 1; i <= pdfReader.NumberOfPages; i++)
{
editor.EditPage(pdfStamper, i);
}
}
我们得到结果:
当心,引用答案的限制仍然存在。特别是,此编辑器仅编辑页面内容流。对于完整的解决方案,您还必须编辑所有表单XObject和Pattern流,并处理注释。
为允许复制,这是我创建测试文档的方式:
byte[] createMixedPathsPdf()
{
using (MemoryStream memoryStream = new MemoryStream())
{
using (Document document = new Document())
{
PdfWriter writer = PdfWriter.GetInstance(document, memoryStream);
document.Open();
var canvas = writer.DirectContent;
canvas.SetLineWidth(10);
canvas.MoveTo(100, 700);
canvas.CurveTo(180, 720, 180, 720, 200, 800);
canvas.CurveTo(220, 720, 220, 720, 350, 700);
canvas.MoveTo(350, 700);
canvas.CurveTo(220, 680, 220, 680, 210, 650);
canvas.Stroke();
canvas.SetLineCap(PdfContentByte.LINE_CAP_BUTT);
canvas.SetLineJoin(PdfContentByte.LINE_JOIN_BEVEL);
canvas.SetGState(createGState(PdfContentByte.LINE_CAP_BUTT, PdfContentByte.LINE_JOIN_BEVEL));
canvas.MoveTo(100, 500);
canvas.CurveTo(180, 520, 180, 520, 200, 600);
canvas.CurveTo(220, 520, 220, 520, 350, 500);
canvas.MoveTo(350, 500);
canvas.CurveTo(220, 480, 220, 480, 210, 450);
canvas.Stroke();
canvas.SetLineCap(PdfContentByte.LINE_CAP_PROJECTING_SQUARE);
canvas.SetLineJoin(PdfContentByte.LINE_JOIN_MITER);
canvas.SetGState(createGState(PdfContentByte.LINE_CAP_PROJECTING_SQUARE, PdfContentByte.LINE_JOIN_MITER));
canvas.MoveTo(100, 300);
canvas.CurveTo(180, 320, 180, 320, 200, 400);
canvas.CurveTo(220, 320, 220, 320, 350, 300);
canvas.MoveTo(350, 300);
canvas.CurveTo(220, 280, 220, 280, 210, 250);
canvas.Stroke();
canvas.SetLineCap(PdfContentByte.LINE_CAP_ROUND);
canvas.SetLineJoin(PdfContentByte.LINE_JOIN_ROUND);
canvas.SetGState(createGState(PdfContentByte.LINE_CAP_ROUND, PdfContentByte.LINE_JOIN_ROUND));
canvas.MoveTo(100, 100);
canvas.CurveTo(180, 120, 180, 120, 200, 200);
canvas.CurveTo(220, 120, 220, 120, 350, 100);
canvas.MoveTo(350, 100);
canvas.CurveTo(220, 080, 220, 080, 210, 050);
canvas.Stroke();
}
return memoryStream.ToArray();
}
}
PdfGState createGState(int lineCap, int lineJoin)
{
PdfGState pdfGState = new PdfGState();
pdfGState.Put(new PdfName("LC"), new PdfNumber(lineCap));
pdfGState.Put(new PdfName("LJ"), new PdfNumber(lineJoin));
return pdfGState;
}