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.216.198
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 OpenJPEG codec interface. * * Copyright (c) 2014 by Coriolis Systems Limited * Copyright (c) 2014 by Alastair Houghton */ #include <openjpeg.h> /* 1MB for now */ #define BUFFER_SIZE OPJ_J2K_STREAM_CHUNK_SIZE /* -------------------------------------------------------------------- */ /* Decoder */ /* -------------------------------------------------------------------- */ typedef struct { /* CONFIGURATION */ /* File descriptor, if available; otherwise, -1 */ int fd; /* File pointer, when opened */ FILE * pfile; /* Length of data, if available; otherwise, -1 */ off_t length; /* Specify the desired format */ OPJ_CODEC_FORMAT format; /* Set to divide image resolution by 2**reduce. */ int reduce; /* Set to limit the number of quality layers to decode (0 = all layers) */ int layers; /* PRIVATE CONTEXT (set by decoder) */ const char *error_msg; } JPEG2KDECODESTATE; /* -------------------------------------------------------------------- */ /* Encoder */ /* -------------------------------------------------------------------- */ typedef struct { /* CONFIGURATION */ /* File descriptor, if available; otherwise, -1 */ int fd; /* File pointer, when opened */ FILE * pfile; /* Specify the desired format */ OPJ_CODEC_FORMAT format; /* Image offset */ int offset_x, offset_y; /* Tile information */ int tile_offset_x, tile_offset_y; int tile_size_x, tile_size_y; /* Quality layers (a sequence of numbers giving *either* rates or dB) */ int quality_is_in_db; PyObject *quality_layers; /* Number of resolutions (DWT decompositions + 1 */ int num_resolutions; /* Code block size */ int cblk_width, cblk_height; /* Precinct size */ int precinct_width, precinct_height; /* Compression style */ int irreversible; /* Progression order (LRCP/RLCP/RPCL/PCRL/CPRL) */ OPJ_PROG_ORDER progression; /* Cinema mode */ OPJ_CINEMA_MODE cinema_mode; /* PRIVATE CONTEXT (set by decoder) */ const char *error_msg; } JPEG2KENCODESTATE; /* * Local Variables: * c-basic-offset: 4 * End: * */