NekoGD is a Library for easier implementation of the PHPGD feature.
Features
- Background
- Transparent
- Image
- Color- Watermark
- Text
- Arc
- Rotate
- Gradient
Example
Download: HerePHP Code:<?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();
}
?>
GitHub: Here



Reply With Quote

