Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
share /
docs /
[ HOME SHELL ]
Name
Size
Permission
Action
arc.c
591
B
-rw-r--r--
copyrotated.c
1.81
KB
-rw-r--r--
crop.c
1.31
KB
-rw-r--r--
flip.c
1.18
KB
-rw-r--r--
gif.c
1.01
KB
-rw-r--r--
INSTALL
15.38
KB
-rw-r--r--
nnquant.c
1.15
KB
-rw-r--r--
noIconAlpha.tga
150.08
KB
-rw-r--r--
noIcon.pic
62
KB
-rw-r--r--
noIcon.sgi
65.04
KB
-rw-r--r--
noIcon.tga
150.08
KB
-rw-r--r--
README.CMAKE
1.42
KB
-rw-r--r--
README.JPN
1.75
KB
-rw-r--r--
README.TESTING
2.19
KB
-rw-r--r--
README.TXT
1.72
KB
-rw-r--r--
test_crop_threshold.png
7.73
KB
-rw-r--r--
tgaread.c
975
B
-rw-r--r--
tiffread.c
1.11
KB
-rw-r--r--
windows.c
7.3
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gif.c
#include <stdio.h> #include <stdlib.h> #include <gd.h> int main(void) { int i; FILE * out; gdImagePtr im; gdImagePtr prev =NULL; int black; im = gdImageCreate(100, 100); if (!im) { fprintf(stderr, "can't create image"); return 1; } out = fopen("anim.gif", "wb"); if (!out) { fprintf(stderr, "can't create file %s", "anim.gif"); return 1; } gdImageColorAllocate(im, 255, 255, 255); /* allocate white as side effect */ gdImageGifAnimBegin(im, out, 1, -1); for(i = 0; i < 20; i++) { int r,g,b; im = gdImageCreate(100, 100); r = rand() % 255; g = rand() % 255; b = rand() % 255; gdImageColorAllocate(im, 255, 255, 255); /* allocate white as side effect */ black = gdImageColorAllocate(im, r, g, b); printf("(%i, %i, %i)\n",r, g, b); gdImageFilledRectangle(im, rand() % 100, rand() % 100, rand() % 100, rand() % 100, black); gdImageGifAnimAdd(im, out, 1, 0, 0, 10, 1, prev); if(prev) { gdImageDestroy(prev); } prev = im; } gdImageGifAnimEnd(out); fclose(out); return 0; }
Close