Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.217.162
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python27 /
include /
python2.7 /
Imaging /
Delete
Unzip
Name
Size
Permission
Date
Action
Bit.h
541
B
-rw-r--r--
2020-05-26 08:02
Gif.h
2.49
KB
-rw-r--r--
2020-05-26 08:02
ImDib.h
1.15
KB
-rw-r--r--
2020-05-26 08:02
ImPlatform.h
1.53
KB
-rw-r--r--
2020-05-26 08:02
Imaging.h
19.49
KB
-rw-r--r--
2020-05-26 08:02
Jpeg.h
2.22
KB
-rw-r--r--
2020-05-26 08:02
Jpeg2K.h
2.35
KB
-rw-r--r--
2020-05-26 08:02
Lzw.h
834
B
-rw-r--r--
2020-05-26 08:02
QuantHash.h
2.15
KB
-rw-r--r--
2020-05-26 08:02
QuantHeap.h
603
B
-rw-r--r--
2020-05-26 08:02
QuantOctree.h
238
B
-rw-r--r--
2020-05-26 08:02
QuantPngQuant.h
212
B
-rw-r--r--
2020-05-26 08:02
QuantTypes.h
509
B
-rw-r--r--
2020-05-26 08:02
Raw.h
224
B
-rw-r--r--
2020-05-26 08:02
TiffDecode.h
1.32
KB
-rw-r--r--
2020-05-26 08:02
Zip.h
1.36
KB
-rw-r--r--
2020-05-26 08:02
Save
Rename
/* * The Python Imaging Library * $Id$ * * Windows DIB specifics * * Copyright (c) Secret Labs AB 1997-98. * Copyright (c) Fredrik Lundh 1996. * * See the README file for information on usage and redistribution. */ #ifdef _WIN32 #include "ImPlatform.h" #if defined(__cplusplus) extern "C" { #endif struct ImagingDIBInstance { /* Windows interface */ HDC dc; HBITMAP bitmap; HGDIOBJ old_bitmap; BITMAPINFO *info; UINT8 *bits; HPALETTE palette; /* Used by cut and paste */ char mode[4]; int xsize, ysize; int pixelsize; int linesize; ImagingShuffler pack; ImagingShuffler unpack; }; typedef struct ImagingDIBInstance* ImagingDIB; extern char* ImagingGetModeDIB(int size_out[2]); extern ImagingDIB ImagingNewDIB(const char *mode, int xsize, int ysize); extern void ImagingDeleteDIB(ImagingDIB im); extern void ImagingDrawDIB(ImagingDIB dib, void *dc, int dst[4], int src[4]); extern void ImagingExposeDIB(ImagingDIB dib, void *dc); extern int ImagingQueryPaletteDIB(ImagingDIB dib, void *dc); extern void ImagingPasteDIB(ImagingDIB dib, Imaging im, int xy[4]); #if defined(__cplusplus) } #endif #endif