tecnickcom / TCPDF

Official clone of PHP library to generate PDF documents and barcodes
https://tcpdf.org
Other
4.18k stars 1.51k forks source link

SVG Filetype detection #645

Open THenkeDE opened 1 year ago

THenkeDE commented 1 year ago

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.

williamdes commented 1 year ago

Can you open a pull-request for that?

THenkeDE commented 1 year ago

@williamdes did so just right now