我们最近升级了tcpdf库,并且在将SVGImage插入PDF时遇到问题。
SVG有效并且可以在SVG Online Viewer上正确呈现。但是,当tcpdf将此图像插入PDF时,会显示灰色阴影。图表图例也用红色框覆盖。
如果有人可以帮助,我将不胜感激。
这是我的SVG。
// Retrieve the user-data from (EditText) in TimerActivity
intent.getStringExtra("TIMER_VALUE"); // IS THIS NEEDED, SINCE ITS ASSIGNED TO A STRING BELOW TOO?
// Assign a String value to the (EditText) value you retrieved..
String timerValue;
timerValue = intent.getStringExtra("TIMER_VALUE");
// You can also convert the String to an int, if needed.
// Now you can reference "timerValue" for the value anywhere in the class you choose.
这是图片在PDF上的外观
图例周围不应有灰色背景,也不应有红色框。
谢谢
马丁