php tcpdf image string filter
问题 I've been trying to email a table containing a list of fieldname-value. When I reach an image value, I filter out the image string for use in tcpdf image output. I did a conditional that if data:image/png is found, it should be removed. Otherwise, remove data:image/jpeg. $pdf->writeHTMLCell(50, 0, '', '', "{$fieldname}", 1, 0, 0, true, 'R', true); $base64 = strpos("data:image/png", $col_value) ? str_replace("data:image/png;base64,", "", $field_value) : str_replace("data:image/jpeg;base64,", "