Wugengxian

Results 5 comments of Wugengxian

@BuZZ-dEE this issue is not related to OpenPDF, it is cause by `org.apache.batik`. when shape-rendering="geometricPrecision" is on. it will pass image to OpenPDF by the code `g2d.drawImage(bi, clipR.x, clipR.y, (ImageObserver)null)`...

@BuZZ-dEE the way Apache FOP transform svg to pdf do not like the way that you used. it use the method `org.apache.fop.svg.PDFTranscoder.transcode`. In this method it pass a shape to...

@BuZZ-dEE this issue happen when there are many pictures to merge. when you use ApacheFOP, the pdf only have one picture. so it does not have a glitch. But if...

@asturio you can change your code like this. The cause is that when new page come, it will clear PdfAnnotationsImp in PdfWriter. when we call addAnnotation, it only that the...

@andreasrosdal It also has a better solution like this which can keep completeness of /Kids of radioGroup. ```java package com.lowagie.text.pdf; import com.lowagie.text.Chunk; import com.lowagie.text.Document; import com.lowagie.text.DocumentException; import com.lowagie.text.ExceptionConverter; import com.lowagie.text.PageSize;...