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.130
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python35 /
include /
python3.5m /
Imaging /
Delete
Unzip
Name
Size
Permission
Date
Action
Bit.h
541
B
-rw-r--r--
2020-05-26 07:49
Gif.h
2.49
KB
-rw-r--r--
2020-05-26 07:49
ImDib.h
1.15
KB
-rw-r--r--
2020-05-26 07:49
ImPlatform.h
1.53
KB
-rw-r--r--
2020-05-26 07:49
Imaging.h
19.49
KB
-rw-r--r--
2020-05-26 07:49
Jpeg.h
2.22
KB
-rw-r--r--
2020-05-26 07:49
Jpeg2K.h
2.35
KB
-rw-r--r--
2020-05-26 07:49
Lzw.h
834
B
-rw-r--r--
2020-05-26 07:49
QuantHash.h
2.15
KB
-rw-r--r--
2020-05-26 07:49
QuantHeap.h
603
B
-rw-r--r--
2020-05-26 07:49
QuantOctree.h
238
B
-rw-r--r--
2020-05-26 07:49
QuantPngQuant.h
212
B
-rw-r--r--
2020-05-26 07:49
QuantTypes.h
509
B
-rw-r--r--
2020-05-26 07:49
Raw.h
224
B
-rw-r--r--
2020-05-26 07:49
TiffDecode.h
1.32
KB
-rw-r--r--
2020-05-26 07:49
Zip.h
1.36
KB
-rw-r--r--
2020-05-26 07:49
Save
Rename
/* * The Python Imaging Library. * $Id$ * * declarations for the ZIP codecs * * Copyright (c) Fredrik Lundh 1996. */ #include "zlib.h" /* modes */ #define ZIP_PNG 0 /* continuous, filtered image data */ #define ZIP_PNG_PALETTE 1 /* non-continuous data, disable filtering */ #define ZIP_TIFF_PREDICTOR 2 /* TIFF, with predictor */ #define ZIP_TIFF 3 /* TIFF, without predictor */ typedef struct { /* CONFIGURATION */ /* Codec mode */ int mode; /* Optimize (max compression) SLOW!!! */ int optimize; /* 0 no compression, 9 best compression, -1 default compression */ int compress_level; /* compression strategy Z_XXX */ int compress_type; /* Predefined dictionary (experimental) */ char* dictionary; int dictionary_size; /* PRIVATE CONTEXT (set by decoder/encoder) */ z_stream z_stream; /* (de)compression stream */ UINT8* previous; /* previous line (allocated) */ int last_output; /* # bytes last output by inflate */ /* Compressor specific stuff */ UINT8* prior; /* filter storage (allocated) */ UINT8* up; UINT8* average; UINT8* paeth; UINT8* output; /* output data */ int prefix; /* size of filter prefix (0 for TIFF data) */ int interlaced; /* is the image interlaced? (PNG) */ int pass; /* current pass of the interlaced image (PNG) */ } ZIPSTATE;