• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

(PHP) Map generating script

mehimz

New Member
Joined
Nov 25, 2012
Messages
23
Reaction score
1
PHP:
<?php
header('Content-Type: image/png');

        $x = 32369;
        $y = 32241;
        $z = 7;
        $image = imagecreatefrompng("./maps/".$z.".png");
        $new_width = 200;
        $new_height= 200;
        $image_new = imagecreatetruecolor($new_width, $new_height);
        imagecopyresized($image_new, $image, 0, 0, $x-100, $y-100, $new_width, $new_height,200, 200);
        imagepng($image_new);
?>
Why doesn't it work? It is suppoed to cut a part of the image... Is there something wrong with the code? I've been fighting with it on various ways still doesn't work...
 

Similar threads

Replies
4
Views
309
Back
Top