( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ HEX
HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux mail.thebrand.ai 6.8.0-107-generic #107-Ubuntu SMP PREEMPT_DYNAMIC Fri Mar 13 19:51:50 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/tmpr/../tmpr/../tmpr/../tmpr/../newdatasets/imageLibrary/index.php
<?php
require 'SimpleImage.php';

// Ignore notices
error_reporting(E_ALL & ~E_NOTICE);


  // Create a new SimpleImage object
  $image = new SimpleImage();

  // Manipulate it
  $image
    ->fromFile('parrot.jpg')              // load parrot.jpg
    ->autoOrient()                        // adjust orientation based on exif data
    ->bestFit(300, 600)                   // proportinoally resize to fit inside a 250x400 box
    ->flip('x')                           // flip horizontally
    ->colorize('DarkGreen')               // tint dark green
    ->border('black', 5)                  // add a 5 pixel black border
    ->overlay('flag.png', 'bottom right') // add a watermark image
    ->toScreen();                         // output to the screen