Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

NekoGD

Initiate Mage
Joined
Mar 22, 2014
Messages
3
Reaction score
1
NekoGD is a Library for easier implementation of the PHPGD feature.
Features
  • Background
    - Transparent
    - Image
    - Color
  • Watermark
  • Text
  • Arc
  • Rotate
  • Gradient
Example
PHP:
<?php
  require_once('nekogd_library.php');

  try {

      $gd = new NekoGD();

      $gd->config('png', '120', '120', 'Test Image');
    $gd->text('assets/Yahoo Font.ttf', 'b55050', '15');

    $gd->bgc('efefef')->write('Image!', '0,30');
    $gd->watermark('assets/watermark.png');

    echo $gd->output();

  } catch (Exception $e) {
      echo $e->getMessage();
  }
 ?>

Download:
GitHub:
 
Last edited:
Back
Top