mathsgod/http-dataurl

convert dataurl to file

1.0.7 2020-06-29 03:17 UTC

This package is auto-updated.

Last update: 2024-04-29 04:19:44 UTC


README

convert dataurl to file

$o=new HTTP\DataUrl($dataurl);
echo "mime type: ". $o->getMimeType(),"\n";


$size=$o->writeTo($filename);
echo "total bytes = $size";