PHP code example of moroz1999 / sxg

1. Go to this page and download the library: Download moroz1999/sxg library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

moroz1999 / sxg example snippets


$gd = imagecreatefromjpeg('boobs.jpg');

th(320);
$image->setHeight(240);
$array = [
    0x000fff,
    0xff00ff,
    0x000000,
    0xff0000,
    0xffff00,
    0xffffff,
    0xf0ff30,
    0x808080,
    0x80f080,
    0xcdcdcd,
    0xf7cdb4,
    0x432118,
    0xb58169,
];
$image->setColorFormat($image::SXG_COLOR_FORMAT_16);
$image->setRgbPalette($array);
$image->setPaletteType($image::SXG_PALETTE_FORMAT_CLUT);
$image->importFromGd($gd);
file_put_contents('test.sxg', $image->getSxgData());