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 /
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: //modules/pil/libImaging/Tiff.h#1 $ * * declarations for the LibTiff-based Group3 and Group4 decoder * */ #ifndef _TIFFIO_ #include <tiffio.h> #endif #ifndef _TIFF_ #include <tiff.h> #endif /* UNDONE -- what are we using from this? */ /*#ifndef _UNISTD_H # include <unistd.h> # endif */ #ifndef min #define min(x,y) (( x > y ) ? y : x ) #define max(x,y) (( x < y ) ? y : x ) #endif #ifndef _PIL_LIBTIFF_ #define _PIL_LIBTIFF_ typedef struct { tdata_t data; /* tdata_t == void* */ toff_t loc; /* toff_t == uint32 */ tsize_t size; /* tsize_t == int32 */ int fp; uint32 ifd; /* offset of the ifd, used for multipage * Should be uint32 for libtiff 3.9.x * uint64 for libtiff 4.0.x */ TIFF *tiff; /* Used in write */ toff_t eof; int flrealloc;/* may we realloc */ } TIFFSTATE; extern int ImagingLibTiffInit(ImagingCodecState state, int fp, int offset); extern int ImagingLibTiffEncodeInit(ImagingCodecState state, char *filename, int fp); extern int ImagingLibTiffSetField(ImagingCodecState state, ttag_t tag, ...); /* Trace debugging legacy, don't enable for Python 3.x, unicode issues. */ /* #define VA_ARGS(...) __VA_ARGS__ #define TRACE(args) fprintf(stderr, VA_ARGS args) */ #define TRACE(args) #endif