api icon indicating copy to clipboard operation
api copied to clipboard

Unable to convert from PNG to SVG using rest7.php

Open sibbu2005 opened this issue 6 years ago • 0 comments

Here is my code `<?php include 'api-master/rest7.php';

$im = imagecreatefrompng('bhobj_282.png');

$svg = convertImage7($im, 'svg');

if ($svg) { $myTextfile = fopen('output.svg', "w"); file_put_contents('output.svg', $svg); fclose($myTextfile); } else { die('Unable to convert');

} ?>`

sibbu2005 avatar Mar 10 '18 10:03 sibbu2005