display picture in pdf generated with laravel code example
Example: display picture in pdf generated with laravel
//in Controller
$path = 'images/V.png';
$type = pathinfo($path, PATHINFO_EXTENSION);
$data = file_get_contents($path);
$logo = 'data:image/' . $type . ';base64,' . base64_encode($data);
//in View
<img src="{{ $data['logo'] }}" width="150" height="150" />