File "ImageUtils.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/app/Generators/ImageUtils.php
File size: 348 bytes
MIME-type: text/x-php
Charset: utf-8

<?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)));
    }
}