!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/lampp/share/docs/   drwxr-xr-x
Free 13.82 GB of 61.93 GB (22.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     nnquant.c (1.15 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* $Id$ */

#include "gd.h"
#include <stdio.h>
#include <stdlib.h>

void save_png(gdImagePtr im, const char *filename)
{
    FILE *fp;
    fp = fopen(filename, "wb");
    if (!fp) {
        fprintf(stderr, "Can't save png image %s\n", filename);
        return;
    }
#ifdef HAVE_LIBPNG
    gdImagePng(im, fp);
#else
    printf("No PNG support. Cannot save image.\n");
#endif
    fclose(fp);
}

int main()
{
#ifdef HAVE_JPEG
    gdImagePtr im, im2;
    FILE *fp;
    char path[2048];

    fp=fopen("resampledbug.jpeg", "rb");
    if (!fp) {
        fprintf(stderr, "Can't load /home/pierre/IM3801.jpg\n");
        return 1;
    }

    im = gdImageCreateFromJpeg(fp);
    fclose(fp);
    if (!im) {
        fprintf(stderr, "Can't load TIFF image %s\n", path);
        return 1;
    }

    im2 = gdImageNeuQuant(im, 256, 3);

    if (im2) {
        gdImageSaveAlpha(im2, 1);
        save_png(im2, "a_nnquant.png");
        gdImageDestroy(im2);
    } else {
        printf("neu quant failed.\n");
    }

    gdImageTrueColorToPalette(im, 1, 256);

    gdImageSaveAlpha(im, 1);
    save_png(im, "a_jquant_dither.png");

    gdImageDestroy(im);
#else
    printf("JPEG support is required for this example. Please recompile GD with JPEG or change this example to use another format as input.");
    return 1;
#endif
    return 0;
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.9591 ]--