Brian Sweeney
Brian Sweeney
Ah ha ha yes sorry for the incorrect behavior. Won't be able to help with your current class but hopefully in a future one.
Also, one more look and it also appears float behavior is additionally incorrect in that the inline element defines the bounds of the float. Floating right just doesn't really work...
Noting for reference, possibly relevant to #2530.
Markers are not. You can see the supported elements in the [tag directory](https://github.com/dompdf/php-svg-lib/tree/master/src/Svg/Tag).
Temporary work around is the disable the PCRE JIT when using Dompdf. The configuration option `pcre.jit` is available starting with PHP 7.
The current implementation globally changes the JIT setting. I'm moving the logic into a run-time configuration change helper moving forward, but would like to explore the possibility of disabling for...
Noting that the error triggered by Base64 parsing may be mitigated by #3491.
Next major release I'm going to remove the related logic. I've been unable to reproduce the error lately, suggesting a system-specific issue or sufficient improvements in the implementation to avoid...
To read a font from a collection you just need to open the TTC then specify the font you want: ``` $fc = new \FontLib\TrueType\Collection(); $fc->load($test_file); $count = count($fc); echo...
Probably not? Links are made functional by using an annotation, which uses a rectangle to define the clickable area. I'll review the spec and see if there's a better way...