如何转换JPG / PNG使用PHP SVG?
我知道,它不会被矢量化,但我需要它在SVG格式。
我不想使用任何其他软件比PHP。
事情是这样的:
<?php
$image_to_cenvert = 'image.jpg';
$content = file_get_contents($image_to_cenvert);
$svg_file = fopen('image.svg','w+');
fputs($svg_file,$content);
fclose($svg_file);
?>