File tree Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -78,22 +78,6 @@ typedef unsigned char uchar;
78
78
/* EXIF standard defines Copyright as "<Photographer> [ '\0' <Editor> ] ['\0']" */
79
79
#define EXIF_MAX_COPYRIGHT 2
80
80
81
- /* {{{ enum image_filetype
82
- This enum is used to have ext/standard/image.c and ext/exif/exif.c use
83
- the same constants for file types.
84
- */
85
- typedef enum
86
- { IMAGE_FILETYPE_UNKNOWN = 0 ,
87
- IMAGE_FILETYPE_GIF = 1 ,
88
- IMAGE_FILETYPE_JPEG ,
89
- IMAGE_FILETYPE_PNG ,
90
- IMAGE_FILETYPE_SWF ,
91
- IMAGE_FILETYPE_PSD ,
92
- IMAGE_FILETYPE_BMP ,
93
- IMAGE_FILETYPE_TIFF
94
- } image_filetype ;
95
- /* }}} */
96
-
97
81
/* {{{ structs
98
82
This structure stores Exif header image elements in a simple manner
99
83
Used to store camera data as extracted from the various ways that it can be
Original file line number Diff line number Diff line change 23
23
24
24
PHP_FUNCTION (getimagesize );
25
25
26
+ /* {{{ enum image_filetype
27
+ This enum is used to have ext/standard/image.c and ext/exif/exif.c use
28
+ the same constants for file types.
29
+ */
30
+ typedef enum
31
+ { IMAGE_FILETYPE_UNKNOWN = 0 ,
32
+ IMAGE_FILETYPE_GIF = 1 ,
33
+ IMAGE_FILETYPE_JPEG ,
34
+ IMAGE_FILETYPE_PNG ,
35
+ IMAGE_FILETYPE_SWF ,
36
+ IMAGE_FILETYPE_PSD ,
37
+ IMAGE_FILETYPE_BMP ,
38
+ IMAGE_FILETYPE_TIFF
39
+ } image_filetype ;
40
+ /* }}} */
41
+
26
42
#endif /* PHP_IMAGE_H */
You can’t perform that action at this time.
0 commit comments