Imagic SVG to PNG gives blank image PHP

255 Views Asked by At

SVG content comes as json data from a service. Here is my svg file

$data = <div style='width: 100%;'>
<svg xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:svg='http://www.w3.org/2000/svg' id='svg278' version='1.1' width='420' height='420' viewBox='0 0 420 420' xmlns='http://www.w3.org/2000/svg' style='width: 100%;'>
  <image href='BASE54IMAGE' width='420' height='420'>
  </image>
  <g transform='translate(124.6875, 70)'>
  <g>
     <rect rx='3' width='161' height='280' class='no-fill' fill='transparent' stroke='#000000' stroke-width='1.25'></rect>
  </g>
  <g transform='translate(16.1, 28) rotate(0, 64.4, 64.4)' class='cursor-pointer'>
     <g data-purpose='color-fill'>
        <mask id='0-0'>
           <image href='BASE64IMAGE' width='128.8' height='128.8'></image>
        </mask>
        <mask id='0-1'>
           <image href='BASE64IMG' width='128.8' height='128.8'></image>
        </mask>
        <rect rx='3' mask='url(#0-0)' fill='#FFFFFF' width='128.8' height='128.8'></rect>
        <rect rx='3' mask='url(#0-1)' fill='#abe0f5' width='128.8' height='128.8'></rect>
     </g>
     <g data-purpose='configurations'>
        <g transform='translate(-25, -25)'>
           <rect class='no-fill cursor-pointer' fill='transparent' stroke='#000000' stroke-width='1.25' width='25' height='25'></rect>
        </g>
        <g transform='translate(128.8, -25)'>
           <rect class='no-fill cursor-pointer' fill='transparent' stroke='#000000' stroke-width='1.25' width='25' height='25'>r</rect>
        </g>
        <g transform='translate(128.8, 128.8)'>
           <rect class='no-fill cursor-pointer' fill='transparent' stroke='#000000' stroke-width='1.25' width='25' height='25'></rect>
        </g>
        <g transform='translate(-25, 128.8)'>
           <rect class='no-fill cursor-pointer' fill='transparent' stroke='#000000' stroke-width='1.25' width='25' height='25'></rect>
        </g>
     </g>
     <g data-purpose='cover-color-fill'>
        <rect rx='3' class='no-fill cursor-pointer' fill='transparent' stroke='#000000' stroke- 
 width='1.25' width='128.8' height='128.8'></rect>
     </g>
  </g>
  </g>
   </svg>
  </div>

I'm decoding the content here,

$data = json_encode($json, true);
$htmlData = htmlentities($data);
$htmlContent = htmlspecialchars_decode($htmlData);

Saving as svg:

file_put_contents('assets/pdfs/new.svg', $htmlContent);   

The save works very good, i can open svg without any error.

Trying to convert my saved svg to png here,

        $imPng = new \Imagick();
        $png = file_get_contents('assets/pdfs/new.svg');
        
        $png = '<?xml version="1.0"  encoding="UTF-8" standalone="no"?>' .$png;
        $imPng->readImageBlob($png);
        $imPng->setImageFormat("png");
        $imPng->writeImage('new.png');
        file_put_contents ('assets/pdfs/new.png'); 

But the converted PNG is blank. What should i do ? Whats wrong with this code?

Note: In svg content, all the images come as base64

0

There are 0 best solutions below