summaryrefslogtreecommitdiff
path: root/support/ps2eps/src/C/bbox.c
blob: 668f7e97eea5e6749259b03906bfd3912eeabaf1 (plain)
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/********************************************************************/
/** bbox -- calculates Bounding Box of a pbmraw/ppmraw-picture     **/
/** Created:   Nov. 1997, revised 1998, 1999, 2009, 2021           **/
/** Author:    Roland Bless <roland -at- bless.de>                 **/
/** Copyright (C) 1998-2020 Roland Bless                           **/
/** To compile simply use:                                         **/
/** "cc bbox.c -o bbox" or "make bbox"                             **/ 
/********************************************************************/
/*
 * $Id: bbox.c 146 2021-03-12 20:26:23Z bless $
 */

/**
* This program is free software; you can redistribute it and/or modify     
* it under the terms of the GNU General Public License as published by     
* the Free Software Foundation; either version 2 of the License, or        
* (at your option) any later version.                                      
*                                                                          
* This program is distributed in the hope that it will be useful,          
* but WITHOUT ANY WARRANTY; without even the implied warranty of           
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            
* GNU General Public License for more details.                             
*                                                                           
* You should have received a copy of the GNU General Public License        
* along with this program; if not, write to the Free Software              
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
**/

/* Quoting EPSF Spec:
   http://partners.adobe.com/public/developer/en/ps/5002.EPSF_Spec.pdf

   %!PS-Adobe-3.0 EPSF-3.0
   %%BoundingBox: llx lly urx ury

   The four arguments of the bounding box comment correspond to the
   lower-left (llx, lly) and upper-right (urx, ury) corners of the
   bounding box. They are expressed in the default PostScript
   coordinate system. For an EPS file, the bounding box is the smallest
   rectangle that encloses all the marks painted on the single page of
   the EPS file.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#if defined(_WIN32) && !defined(__CYGWIN__)
#include <io.h>	  /* needed for _setmode() */
#include <fcntl.h>
#endif

/**********************
*  global variables   *
**********************/
const char *const version= "$Rev: 146 $";
const char *const prgname= "bbox";

const double round_precision= 1e-6;
const short int inputlinelength= 1024;

unsigned char bitval[8]=
{
  1 << 7,
  1 << 6,
  1 << 5,
  1 << 4,
  1 << 3,
  1 << 2,
  1 << 1,
  1
};

unsigned int minus_one(const unsigned x) 
{
  return (x == 0) ? x : x-1;
}

unsigned int plus_one(const unsigned x) 
{
  return (x == (unsigned int) ~0U) ? x : x+1;
}

/***************************** readppm_and_calcbb ***********************
*	input: 	name, resolution, tight                         	*
*	output: 	- (stdout)           				*
*                                                                       *
*     	Reads a RAWPPM or RAWPBM picture file (name or STDIN) and       *
*       calculates its Bounding Box on-the-fly (line-by-line).          *
*                                                                       *
*       Parameters:                                                     *
*       name: name of the PBMRAW file or NULL (input from stdin)        *
*       resolution: Pixel per Inch (DPI)                                *
*       tight: boolean value, if false 1 Postscript Point is added to   *
               each Bounding Box parameter, otherwise the BB is tight   *
*       The Bounding Box is given in Postscript Points  (72 dots/inch)  *
*       and printed to stdout                                           *
************************************************************************/
/* calculate the bounding box in postscript points, given a resolution in dpi */
void readppm_and_calcbb(const char *name, 
                        const unsigned int resolution, 
                        const unsigned char tight)
{
	FILE 	*inputfile;
        char    inputline[inputlinelength];
        unsigned char magic_found= 0;
        int x,y,byte_x,i;
	const double pt_dpi_dbl= 72.0;
        unsigned int x_min, x_max, y_min, y_max;
        unsigned int llx, lly, urx, ury; /* bounding box */
        double       hllx, hlly, hurx, hury; /* hires bounding box */
        unsigned char   *image_row,	 /* ImageRow */
                        *tmpcolumnbytep;
        unsigned int 	width,height;	 /* Image Size	*/ 
        unsigned int    byte_width;
        unsigned char   colormax= 0;       /* max color value */
        unsigned int    ui_colormax= 0;    /* max color value */
        
 	if ( name == NULL ) 
        {
          inputfile = stdin;
          name = "- STDIN -";
	}
	else 	
        {
          inputfile = fopen(name,"r");
          if ( inputfile == NULL )
          {
            fprintf(stderr,"%s: ERROR -- could not open file %s\n", 
                    prgname, name);
            exit(1);
          }
        }
        /** check for magic number **/
        do 
        {
		if (fgets(inputline, inputlinelength, inputfile) == NULL) {
			fprintf(stderr,"%s: ERROR -- unexpected end of file %s\n", prgname, name);
			fclose(inputfile);
			exit(1);
		}
#ifdef DEBUG
          fprintf(stderr,"read:[%s]\n",inputline);
#endif
          if ( strcmp(inputline,"P4\n") == 0 )
          {
            magic_found= 4;
          }
          else
          if ( strcmp(inputline,"P6\n") == 0 )
          {
            magic_found= 6;
          }
        }
        while ( !feof(inputfile) && !magic_found );
        
        if ( !magic_found )
        {
          fprintf(stderr,"%s: ERROR -- %s is not in ppmraw or pbmraw format\n",
                  prgname, name);
	  fclose(inputfile);
	  exit(1);
        }
        /** skip comments **/
        do 
        {
	   if (fgets(inputline, inputlinelength, inputfile) == NULL) {
		   fprintf(stderr,"%s: ERROR -- unexpected end of file %s\n", prgname, name);
		   fclose(inputfile);
		   exit(1);
	   }
#ifdef DEBUG
          fprintf(stderr,"read:[%s]\n",inputline);
#endif
          if (*inputline == '#')
            continue;
          else
            break;
        }
        while ( !feof(inputfile) );
        /** read picture size: width, height **/
        sscanf(inputline,"%u %u",&width,&height);
        if ( magic_found == 6 ) /* PPM file has maximum color-component value */
        {
	  if (fgets(inputline, inputlinelength, inputfile) == NULL) {
		  fprintf(stderr,"%s: ERROR -- unexpected end of file %s\n", prgname, name);
		  fclose(inputfile);
		  exit(1);
	  }
	  sscanf(inputline,"%u",&ui_colormax);  
	  colormax = (unsigned char) ui_colormax; /* this is safer */
        }
#ifdef DEBUG
	fprintf(stderr,"\nreading picture: %s size X: %u Y: %u\n",name,width,height);
#endif
        x_min= width>0 ? width-1 : 0;
        x_max= 0; 
        y_min= height>0 ? height-1 : 0; 
        y_max= 0;
        if ( magic_found == 4 ) /* PBMRAW = Bitmap */
        { /** read raw pbmfile **/
          byte_width= width / 8;
          if (width % 8 != 0)
            byte_width++;
        }
        else /** assume ppm raw **/
        { 
          byte_width= width * 3; /* we have RGB, i.e. three bytes for each pixel */
        }
	/* 
	 * Now read a raster of Width * Height pixels, proceeding through the image in normal English reading order,
         * i.e., starting from top left then moving right 
	 */
	/* we allocate only one line */
        image_row= malloc(byte_width);
        if ( image_row )
        {
#if defined(_WIN32) && !defined(__CYGWIN__)  /* this is really braindead stuff for MSVC */
	  i= _setmode( _fileno(stdin), _O_BINARY);
	  if (i == -1)
	    fprintf(stderr,"%s: ERROR - Cannot set binary mode for STDIN\n");
#endif
          for (y= 0; y<height; y++) /* for every image row 0..height-1 */
          {
            if (fread(image_row, byte_width, 1, inputfile) != 1)
            {
              fprintf(stderr,"%s: WARNING -- fread incomplete - file %s seems to be corrupt\n", prgname, name);
              break;
            }
            tmpcolumnbytep= image_row;
            /* inspect this line from left to right */
            for (byte_x= 0; byte_x<byte_width; byte_x++,tmpcolumnbytep++)
            {
              if (*tmpcolumnbytep != colormax) /* there are pixels not white */
              {
                if (magic_found == 4)
                {
                  for (i= 0; i<8 ; i++)
                  {
                    if (*tmpcolumnbytep & bitval[i])
                    {
                      x= byte_x*8+i;
                      if ( x >= width ) break;
#ifdef DEBUG
                      printf("(row %04d, %04d): <not white>\n",y,x);
#endif
                    }
                  } /* end for */
                } /* end if magic_found 4 */
                else
                { /* assume PPM */
                  x= byte_x/3; /* we have 3 bytes per pixel */
#ifdef DEBUG
                      printf("(row %04d, col %04d) byte %04d: <not %d>\n",y,x,byte_x,colormax);
#endif
                }
                /* update bounding box */
                if ( x < x_min ) x_min= x;
                if ( x > x_max ) x_max= x;
                if ( y < y_min ) y_min= y;
                if ( y > y_max ) y_max= y;
#ifdef DEBUG
                printf("ymin,height:(%04d,%04d) xmin,width:(%04d,%04d)\n",
                       y_min,y_max,x_min,x_max);
#endif
		break;
              } /* if there are pixels not white */
            } /* end for byte_x */
            if ( byte_x != byte_width )
            { /* there was a pixel with no background color */
              tmpcolumnbytep= image_row+byte_width-1;
              /* inspect this line from the right */
              for (byte_x= byte_width-1; 
                   byte_x >= 0; 
                   byte_x--,tmpcolumnbytep--)
              {
                if ( *tmpcolumnbytep != colormax ) /* there are pixels not white */
                {
                  if ( magic_found == 4 )
                  {
                    for (i= 0; i<8 ; i++)
                    {
                      if ( *tmpcolumnbytep & bitval[i] )
                      {
                        x= byte_x*8+i;
                        if (x >= width) break;
#ifdef DEBUG
                        printf("(%04d,%04d): <not white>\n",y,x);
#endif
                      }
                    } /* end for */
                  } /* end if magic_found 4 */
                  else
                  { /* assume PPM */
                    x= byte_x/3; /* we have 3 bytes per pixel */
                  }
                  /* update bounding box */
                  if ( x < x_min ) x_min= x;
                  if ( x > x_max ) x_max= x;
                  if ( y < y_min ) y_min= y;
                  if ( y > y_max ) y_max= y;
#ifdef DEBUG
                printf("ymin,height:(%04d,%04d) xmin,width:(%04d,%04d)\n",
                       y_min,y_max,x_min,x_max);
#endif
                  break;
                } /* if there are pixels not white */ 
              } /* end for byte_x */
            } /* if line contained not only background color */
          } /* end for y */
#ifdef DEBUG_BOX
          fprintf(stderr,"(%04d,%04d), (%04d,%04d)\n", x_min,height-y_max,x_max,height-y_min);
#endif
            /* distance from the left edge to the leftmost point */
            hllx= (x_min*pt_dpi_dbl)/resolution;
            /* distance from the bottom edge to the bottommost point */
            hlly= ((minus_one(height)-y_max)*pt_dpi_dbl)/resolution;
            /* distance from the left edge to the righmost point  */ 
	    hurx= (plus_one(x_max)*pt_dpi_dbl)/resolution;
            /* distance from the bottom edge to the uppermost point */
            hury= ((height-y_min)*pt_dpi_dbl)/resolution;


          if ( !tight )
          {
            /* distance from the left edge to the leftmost point */
            llx= minus_one((unsigned int) ((unsigned long) x_min*72UL)/resolution);
            /* distance from the bottom edge to the bottommost point */
            lly= minus_one((unsigned int) ((unsigned long) (minus_one(height)-y_max)*72UL)/resolution);
            /* distance from the left edge to the righmost point  */ 
            urx= plus_one((unsigned int) ((unsigned long) plus_one(x_max)*72UL)/resolution);
            /* distance from the bottom edge to the uppermost point */
            ury= plus_one((unsigned int) ((unsigned long) (height-y_min)*72UL)/resolution);

	    /* also loosen hires BBox by default precision */
	    if (hllx-round_precision >= 0.0)
		    hllx-=  round_precision;
	    if (hlly-round_precision >= 0.0)
		    hlly-=  round_precision;

	    hurx+=  round_precision;
	    hury+=  round_precision;
          }
          else /* tight bounding box */
          {
            /* distance from the left edge to the leftmost point */
            llx= (unsigned int) ((unsigned long) x_min*72UL)/resolution;
            /* distance from the bottom edge to the bottommost point */
            lly= (unsigned int) ((unsigned long) (minus_one(height)-y_max)*72UL)/resolution;
            /* distance from the left edge to the righmost point  */ 
            urx= (unsigned int) ((unsigned long) plus_one(x_max)*72UL)/resolution;
	    /* round up if we got a remainder */
            if ( (((unsigned long) plus_one(x_max)*72UL) % resolution) != 0 )
              urx= plus_one(urx);
            /* distance from the bottom edge to the uppermost point */
            ury= (unsigned int) ((unsigned long) (height-y_min)*72UL)/resolution;
            if ( (((unsigned long) (height-y_min)*72UL) % resolution) != 0 )
              ury= plus_one(ury);
          }
          /* skip the rest of the file if any data is still present */
          while ( !feof(inputfile) )
          {
            fgets(inputline, inputlinelength, inputfile);
          }

          /* give out Bounding Box */
          printf("%%%%BoundingBox: %d %d %d %d\n", llx, lly, urx, ury);
          printf("%%%%HiResBoundingBox: %f %f %f %f\n", hllx, hlly, hurx, hury);
        }
        else
          fprintf(stderr,"%s: ERROR -- not enough memory to read in one row of the picture\n", prgname);
        
	fclose(inputfile);
        free(image_row);
}


int	
main(int argc, char **argv)
{ 
  int i;
  char *filename= NULL;
  unsigned int resolution= 72; /* use 72 dpi as default resolution */
  unsigned char tight= 1;

  for (i= 1; i<argc; i++)
  {
    if ( strcmp(argv[i],"-r") == 0 )
    {
      if (++i<argc)
        resolution= atol(argv[i]);
      else
        fprintf(stderr,"%s: ERROR -- Missing resolution after -r\n",prgname);
    }
    else
    if ( strcmp(argv[i],"-l") == 0 )
    {
      tight= 0;
    }
    else
    if ( strcmp(argv[i],"-V") == 0 || strcmp(argv[i],"--version")==0 )
    {
      printf("%s: bbox Version %s\n",prgname,version);
      return 0;
    }
    else
    if ( strcmp(argv[i],"-h")==0 || strcmp(argv[i],"--help")==0 )
    {
      printf("%s: Version %s\n",prgname,version);
      printf(" usage: %s [-l] [-r resolution] [-V] [filename]\n",prgname);
      printf(" -l: loose bounding box (bbox is expanded by 1 point)\n");
      printf(" -r: resolution of picture in dpi\n");
      printf(" -V: version information\n");
      printf(" -h: this help\n");
      printf(" bbox reads a rawppm or rawpbm file and prints out the\n");
      printf(" bounding box of the image. If no filename is specified\n");
      printf(" input is read from standard input.\n");
      return 0;
    }
    else
    if ( argv[i][0] == '-' ) /* unkown option */
    {
      fprintf(stderr,"%s: ERROR -- unknown option %s\n call %s -h for help on usage\n",
             prgname, argv[i], prgname);
      return 1;
    }
    else /* filename argument */
      filename= argv[i];
  }

  readppm_and_calcbb(filename, resolution, tight);

  return 0;
}