( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ 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/printBox.php
<?php
   // Create an image with the specified dimensions
   $image = imageCreate(300,200);
 
   // Create a color (this first call to imageColorAllocate
   //  also automatically sets the image background color)
   $colorRed = imageColorAllocate($image, 255,0,0);
   // Create another color
   $colorYellow = imageColorAllocate($image, 255,255,0);
 
   // Draw a rectangle
   imageFilledRectangle($image, 50, 50, 250, 150, $colorYellow);
 
   // Set type of image and send the output
   header("Content-type: image/jpeg");
   imageJpeg($image);
 
   // Release memory
   imageDestroy($image);
?>