File: Dims.pmod

package info (click to toggle)
roxen 1.2beta2-2
  • links: PTS
  • area: contrib
  • in suites: hamm
  • size: 16,948 kB
  • ctags: 8,589
  • sloc: ansic: 89,632; asm: 8,431; sh: 2,915; makefile: 1,787; cpp: 377
file content (221 lines) | stat: -rw-r--r-- 6,233 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
//   $Id: Dims.pmod,v 1.6 1998/03/02 15:23:53 js Exp $
//
//   Imagedimensionreadermodule for Pike.
//   Created by Johan Schn, <js@idonex.se>.
//
//   This software is based in part on the work of the Independent JPEG Group.


#define M_SOF0  0xC0		/* Start Of Frame N */
#define M_SOF1  0xC1		/* N indicates which compression process */
#define M_SOF2  0xC2		/* Only SOF0-SOF2 are now in common use */
#define M_SOF3  0xC3
#define M_SOF5  0xC5		/* NB: codes C4 and CC are NOT SOF markers */
#define M_SOF6  0xC6
#define M_SOF7  0xC7
#define M_SOF9  0xC9
#define M_SOF10 0xCA
#define M_SOF11 0xCB
#define M_SOF13 0xCD
#define M_SOF14 0xCE
#define M_SOF15 0xCF
#define M_SOI   0xD8		/* Start Of Image (beginning of datastream) */
#define M_EOI   0xD9		/* End Of Image (end of datastream) */
#define M_SOS   0xDA		/* Start Of Scan (begins compressed data) */
#define M_COM   0xFE		/* COMment */

class dims
{
  object f;

  int read_1_byte()
  {
    return f->read(1)[0];
  }  

  int read_2_bytes()
  {
    int c1=read_1_byte();
    int c2=read_1_byte();
    return ((c1<<8)+c2);
  }

  int read_2_bytes_intel()
  {
    int c1=read_1_byte();
    int c2=read_1_byte();
    return ((c2<<8)+c1);
  }

  /*
   * Read the initial marker, which should be SOI.
   * For a JFIF file, the first two bytes of the file should be literally
   * 0xFF M_SOI.  To be more general, we could use next_marker, but if the
   * input file weren't actually JPEG at all, next_marker might read the whole
   * file and then return a misleading error message...
   */

  int first_marker()
  {
    int c1, c2;
    
    c1 = read_1_byte();
    c2 = read_1_byte();
    if (c1!=0xFF||c2!=M_SOI) return 0;
    return c2;
  }

  /*
   * Find the next JPEG marker and return its marker code.
   * We expect at least one FF byte, possibly more if the compressor used FFs
   * to pad the file.
   * There could also be non-FF garbage between markers.  The treatment of such
   * garbage is unspecified; we choose to skip over it but emit a warning msg.
   * NB: this routine must not be used after seeing SOS marker, since it will
   * not deal correctly with FF/00 sequences in the compressed image data...
   */

  int next_marker()
  {
    int c;
    int discarded_bytes = 0;
    
    /* Find 0xFF byte; count and skip any non-FFs. */
    c = read_1_byte();
    while (c != 0xFF) {
      discarded_bytes++;
      c = read_1_byte();
    }
    /* Get marker code byte, swallowing any duplicate FF bytes.  Extra FFs
     * are legal as pad bytes, so don't count them in discarded_bytes.
     */
    do {
      c = read_1_byte();
    } while (c == 0xFF);
    return c;
  }

  /* Skip over an unknown or uninteresting variable-length marker */
  int skip_variable()
  {
    int length = read_2_bytes();
//    werror("Skip length: "+length+"\n");
    if (length < 2) return 0;  /* Length includes itself, so must be at least 2 */
    length -= 2;
    f->seek(f->tell()+length);
    return 1;
  }

  
  array get_JPEG()
  {
//    werror("Dims.dims - get_JPEG \n");
    int marker;
    /* Expect SOI at start of file */
    if (first_marker() != M_SOI)
      return 0;
    
    /* Scan miscellaneous markers until we reach SOS. */
    for (;;)
    {
//      werror("Dims.dims - next_marker \n");
      marker = next_marker();
      switch (marker) {
       case M_SOF0:		/* Baseline */
       case M_SOF1:		/* Extended sequential, Huffman */
       case M_SOF2:		/* Progressive, Huffman */
       case M_SOF3:		/* Lossless, Huffman */
       case M_SOF5:		/* Differential sequential, Huffman */
       case M_SOF6:		/* Differential progressive, Huffman */
       case M_SOF7:		/* Differential lossless, Huffman */
       case M_SOF9:		/* Extended sequential, arithmetic */
       case M_SOF10:		/* Progressive, arithmetic */
       case M_SOF11:		/* Lossless, arithmetic */
       case M_SOF13:		/* Differential sequential, arithmetic */
       case M_SOF14:		/* Differential progressive, arithmetic */
       case M_SOF15:		/* Differential lossless, arithmetic */
	int length = read_2_bytes();	/* usual parameter length count */
	int data_precision = read_1_byte();
	int image_height = read_2_bytes();
	int image_width = read_2_bytes();
	return ({ image_width,image_height });
	break;
	
       case M_SOS:			/* stop before hitting compressed data */
	return 0;
	
       case M_EOI:			/* in case it's a tables-only JPEG stream */
	return 0;
	
       default:			/* Anything else just gets skipped */
	if(!skip_variable()) return 0;   /* we assume it has a parameter count... */
	break;
      }
    } 
  }

// GIF-header:
// typedef struct _GifHeader
// {
//   // Header
//   BYTE Signature[3];     /* Header Signature (always "GIF") */
//   BYTE Version[3];       /* GIF format version("87a" or "89a") */
//   // Logical Screen Descriptor
//   WORD ScreenWidth;      /* Width of Display Screen in Pixels */
//   WORD ScreenHeight;     /* Height of Display Screen in Pixels */
//   BYTE Packed;           /* Screen and Color Map Information */
//   BYTE BackgroundColor;  /* Background Color Index */
//   BYTE AspectRatio;      /* Pixel Aspect Ratio */
// } GIFHEAD;

  array get_GIF()
  {
    int marker;
    int offs=f->tell();
    if(f->read(3)!="GIF") return 0;
    f->seek(offs+6);
    int image_width = read_2_bytes_intel();
    int image_height = read_2_bytes_intel();
    return ({ image_width, image_height });
  }

  array get_PNG()
  {
    int marker;
    int offs=f->tell();
    f->seek(offs+1);
    if(f->read(3)!="PNG") return 0;
    f->seek(offs+12);
    if(f->read(4)!="IHDR") return 0;
    read_2_bytes();
    int image_width = read_2_bytes();
    read_2_bytes_intel();
    int image_height = read_2_bytes();
    return ({ image_width, image_height });
  }

  // Read dimensions from a JPEG, GIF or PNG file and return an array with
  // width and height, or if the file isn't a valid image, 0.
  array get(string|object fn)
  {
    if(stringp(fn))
      f=Stdio.File(fn,"r");
    else //if(objectp(fn))
      f=fn;
    int offset=f->tell();
    array a;
    catch {
      if(a=get_JPEG())
	return a;
      
      f->seek(offset);
      if(a=get_GIF())
	return a;
      
      f->seek(offset);
      if (a=get_PNG())
	return a;
    };
  return 0;
  }
}