mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
19 lines
348 B
PHP
19 lines
348 B
PHP
<?php
|
|
|
|
namespace App\Space;
|
|
|
|
use Illuminate\Support\Facades\File;
|
|
|
|
class ImageUtils
|
|
{
|
|
/**
|
|
* Convert local path to Base64 encoded data source
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function toBase64Src($path)
|
|
{
|
|
return sprintf('data:%s;base64,%s', File::mimeType($path), base64_encode(File::get($path)));
|
|
}
|
|
}
|