An open API service indexing awesome lists of open source software.

https://github.com/mathsgod/http-dataurl

convert dataurl to file
https://github.com/mathsgod/http-dataurl

php

Last synced: about 1 year ago
JSON representation

convert dataurl to file

Awesome Lists containing this project

README

          

# http-dataurl
convert dataurl to file

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

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

```