Brian Sweeney

Results 826 comments of Brian Sweeney

I'm not seeing that error with the latest release. Which version are you using?

There appear to be two issues. First is the vertical alignment of the blocks. That should be addressed once the vertical-align branch is finalized. The second issue is that the...

It's still helpful, yes. Sometimes I can find the original issue and link to it. And that way when I release a fix for the issue I can test any...

Firefly does not support Arabic text, only Chinese. Can you specify what solutions have you tried? Also, please refer to #712. While Dompdf can display Arabic characters, text in that...

On first pass this looks like a deficiency in how we hand styling table-row-group elements (thead, tbody, tfoot). The element is treated as a grouping container where in browsers it...

We're not currently tracking total number of pages via CSS counters because of the way that Dompdf renders the document. Currently Dompdf renders as it parses the document. That means...

Might help to see a comparison of the two renders. I don't know what parameters Safari uses to determine the page size/scaling. It's also possible the dimensions are slightly off,...

Thanks for the follow-up. We'll take a look at updating the version, but that may be an option best left to the end user. If we were to do that...

The next release of dompdf will use the "Producer" field instead of "Creator" and will populate it with version information of the form "dompdf 0.7.0 + CPDF". Hopefully that will...

@shorrog to disable compression stream or output dompdf with the "compress" option set to zero: ``` $dompdf->stream('render.pdf', array('compress'=>0)); ``` ``` $pdf = $dompdf->output(array('compress'=>0)); ``` As mentioned by @wakeless you might...