admin管理员组文章数量:1346689
I'm have an existing (generated) PDF that is Tagged (for accessibility, as shown in Acrobat Reader) - I have parsed it through the PDF Accessibility Checker (PAC - ) and found that there are numerous "Figure element on single page with no bounding box" (under PDF/UA | Logical structure | Structure elements | Figures | Bounding boxes) all inline SVGs
To resolve these messages I need to add a bounding box (BBox) attribute for these - I was hoping to simply add a "viewBox" to each of the SVG's within the HTML and for it to flow through to the PDF but this does not appear to be the case so I am looking for an automated solution (.NET) to add the required BBox attributes
I looked at PDFBox however this is a Java application - the .Net port of this seems to be quite a long way behind (and doesn't have the rich features the Java version has). I've also have tried using iText (the free version) which is also a long way behind where it currently is - so I've been trying to get it to work using PdfPig (/)
I've tried using the following code
byte[] pdf; // contains the PDF contents in a byte array
...
using (MemoryStream stream = new MemoryStream())
{
stream.Write(pdf, 0, pdf.Length);
stream.Seek(0, SeekOrigin.Begin);
using (UglyToad.PdfPig.PdfDocument pdfPigDocument = UglyToad.PdfPig.PdfDocument.Open(stream))
{
for (int i = 0; i < pdfPigDocument.NumberOfPages; i++)
{
var page = pdfPigDocument.GetPage(i + 1);
foreach (var item in page.GetAnnotations()) //also tried page.GetImages()
{
//..calculate bounding box then populate BBox attribute..
}
}
}
}
...however GetAnnotations() returns null - I think I need to search for all element properties/attributes with a Role="Figure" as per below (dialog shown in PAC)
...then add the BBox
Does anyone have any ideas how I can firstly find all of the Role="Figure" element properties/attributes so I can then assign the BBox attribute ?
本文标签:
版权声明:本文标题:Change (via .NET app) existing PDF (generated from HTML with inline SVG) to include BBox attribute for SVG - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743825383a2545545.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论