HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/pietvanmierlo/stempelbv.nl/vendor/gregwar/image/Gregwar/Image/demo/cacheCreate.php
<?php

require_once '../autoload.php';

use Gregwar\Image\Image;

/*
 * Use the cache with a from-scratch image
 */

echo
Image::create(300, 350)
    ->fill('rgb(255, 150, 150)')
    ->circle(150, 150, 200, 'red', true)
    ->write('./fonts/CaviarDreams.ttf', 'Hello world!', 150, 150, 20, 0, 'white', 'center')
    ->jpeg();

echo "\n";