Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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" />
               
 
PREVIOUS NEXT
Tagged: #display #picture #pdf #generated #laravel
ADD COMMENT
Topic
Name
1+7 =