TCPDF icon indicating copy to clipboard operation
TCPDF copied to clipboard

SVG Filetype detection

Open THenkeDE opened this issue 1 year ago • 3 comments

THenkeDE avatar Sep 11 '23 06:09 THenkeDE

even in the latest 6.6.5 the detection of inline SVG seems broken.

Chainging Line 19016 of tcpdf.php

from $type = '';

to $type = preg_match('/<svg([^>]*)>/si', $imgsrc) ? 'svg' : ''

seems to fix this.

THenkeDE avatar Sep 11 '23 06:09 THenkeDE

Can you open a pull-request for that?

williamdes avatar Sep 11 '23 08:09 williamdes

@williamdes did so just right now

THenkeDE avatar Sep 11 '23 08:09 THenkeDE