home *** CD-ROM | disk | FTP | other *** search
- /*
-
- GBMPGM.C Poskanzers PGM format
-
- Reads as 8 bit grey image.
- Writes grey equivelent of passed in 8 bit colour data (no palette written).
- Output options: r,g,b,k (default: k)
-
- */
-
- /*...sincludes:0:*/
- #include <stdio.h>
- #include <ctype.h>
- #include <stddef.h>
- #include <stdlib.h>
- #include <string.h>
- #include <memory.h>
- #include <malloc.h>
- #ifdef AIX
- #include <unistd.h>
- #else
- #include <io.h>
- #endif
- #include <fcntl.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include "standard.h"
- #include "gbm.h"
-
- /*...vgbm\46\h:0:*/
- /*...e*/
-
- /*...suseful:0:*/
- #define low_byte(w) ((byte) ((w)&0x00ff) )
- #define high_byte(w) ((byte) (((w)&0xff00)>>8))
- #define make_word(a,b) (((word)a) + (((word)b) << 8))
- /*...e*/
- /*...ssame:0:*/
- static BOOLEAN same(char *s1, char *s2, int n)
- {
- for ( ; n--; s1++, s2++ )
- if ( tolower(*s1) != tolower(*s2) )
- return ( FALSE );
- return ( TRUE );
- }
- /*...e*/
- /*...sfind_word:0:*/
- static char *find_word(char *str, char *substr)
- {
- char buf [100+1], *s;
- int len = strlen(substr);
-
- for ( s = strtok(strcpy(buf, str), " \t,");
- s != NULL;
- s = strtok(NULL, " \t,") )
- if ( same(s, substr, len) && s [len] == '\0' )
- return ( str + (s - buf) );
- return ( NULL );
- }
- /*...e*/
- /*...smake_output_palette:0:*/
- #define SW4(a,b,c,d) ((a)*8+(b)*4+(c)*2+(d))
-
- static BOOLEAN make_output_palette(GBMRGB gbmrgb [], byte grey [], char *opt)
- {
- BOOLEAN k = ( find_word(opt, "k") != NULL );
- BOOLEAN r = ( find_word(opt, "r") != NULL );
- BOOLEAN g = ( find_word(opt, "g") != NULL );
- BOOLEAN b = ( find_word(opt, "b") != NULL );
- int i;
-
- switch ( SW4(k,r,g,b) )
- {
- case SW4(0,0,0,0):
- /* Default is the same as "k" */
- case SW4(1,0,0,0):
- for ( i = 0; i < 0x100; i++ )
- grey [i] = (byte) ( ((word) gbmrgb [i].r * 77 +
- (word) gbmrgb [i].g * 151 +
- (word) gbmrgb [i].b * 28) >> 8 );
- return ( TRUE );
- case SW4(0,1,0,0):
- for ( i = 0; i < 0x100; i++ )
- grey [i] = gbmrgb [i].r;
- return ( TRUE );
- case SW4(0,0,1,0):
- for ( i = 0; i < 0x100; i++ )
- grey [i] = gbmrgb [i].g;
- return ( TRUE );
- case SW4(0,0,0,1):
- for ( i = 0; i < 0x100; i++ )
- grey [i] = gbmrgb [i].b;
- return ( TRUE );
- }
- return ( FALSE );
- }
- /*...e*/
- /*...sposk stuff:0:*/
- /*...sread_byte:0:*/
- static byte read_byte(int fd)
- {
- byte b = 0;
-
- read(fd, (char *) &b, 1);
- return ( b );
- }
- /*...e*/
- /*...sread_char:0:*/
- static char read_char(int fd)
- {
- char c;
-
- while ( (c = read_byte(fd)) == '#' )
- /* Discard to end of line */
- while ( (c = read_byte(fd)) != '\n' )
- ;
- return ( c );
- }
- /*...e*/
- /*...sread_num:0:*/
- static int read_num(int fd)
- {
- char c;
- int num;
-
- while ( isspace(c = read_char(fd)) )
- ;
- num = c - '0';
- while ( isdigit(c = read_char(fd)) )
- num = num * 10 + (c - '0');
- return ( num );
- }
- /*...e*/
- /*...sread_posk_header:0:*/
- static void read_posk_header(int fd, int *h1, int *h2, int *w, int *h, int *m)
- {
- lseek(fd, 0L, SEEK_SET);
- *h1 = read_byte(fd);
- *h2 = read_byte(fd);
- *w = read_num(fd);
- *h = read_num(fd);
- *m = read_num(fd);
- }
- /*...e*/
- /*...e*/
-
- static GBMFT pgm_gbmft =
- {
- "Greymap",
- "Portable Greyscale-map (binary P5 type)",
- "PGM",
- GBM_FT_R8|
- GBM_FT_W8,
- };
-
- #define GBM_ERR_PGM_BAD_M ((GBM_ERR) 100)
-
- /*...spgm_qft:0:*/
- GBM_ERR pgm_qft(GBMFT *gbmft)
- {
- *gbmft = pgm_gbmft;
- return ( GBM_ERR_OK );
- }
- /*...e*/
- /*...spgm_rhdr:0:*/
- GBM_ERR pgm_rhdr(char *fn, int fd, GBM *gbm, char *opt)
- {
- int h1, h2, w, h, m;
-
- fn=fn; opt=opt; /* Suppress 'unref arg' compiler warnings */
-
- read_posk_header(fd, &h1, &h2, &w, &h, &m);
- if ( h1 != 'P' || h2 != '5' )
- return ( GBM_ERR_BAD_MAGIC );
-
- if ( w <= 0 || h <= 0 )
- return ( GBM_ERR_BAD_SIZE );
-
- if ( m <= 1 || m >= 0x100 )
- return ( GBM_ERR_PGM_BAD_M );
-
- gbm -> w = w;
- gbm -> h = h;
- gbm -> bpp = 8;
-
- return ( GBM_ERR_OK );
- }
- /*...e*/
- /*...spgm_rpal:0:*/
- GBM_ERR pgm_rpal(int fd, GBM *gbm, GBMRGB *gbmrgb)
- {
- int h1, h2, w, h, m, i;
-
- gbm=gbm; /* Suppress 'unref arg' compiler warning */
-
- read_posk_header(fd, &h1, &h2, &w, &h, &m);
- for ( i = 0; i < m; i++ )
- gbmrgb [i].r =
- gbmrgb [i].g =
- gbmrgb [i].b = (byte) (i * 0xff / (m - 1));
-
- return ( GBM_ERR_OK );
- }
- /*...e*/
- /*...spgm_rdata:0:*/
- GBM_ERR pgm_rdata(int fd, GBM *gbm, byte *data)
- {
- int h1, h2, w, h, m, i, stride;
- byte *p;
-
- read_posk_header(fd, &h1, &h2, &w, &h, &m);
-
- stride = ((gbm -> w + 3) & ~3);
- p = data + ((gbm -> h - 1) * stride);
- for ( i = gbm -> h - 1; i >= 0; i-- )
- {
- read(fd, p, gbm -> w);
- p -= stride;
- }
- return ( GBM_ERR_OK );
- }
- /*...e*/
- /*...spgm_w:0:*/
- GBM_ERR pgm_w(char *fn, int fd, GBM *gbm, GBMRGB *gbmrgb, byte *data, char *opt)
- {
- char s [100+1];
- int i, j, stride;
- byte grey [0x100];
- byte *p, *linebuf;
-
- fn=fn; opt=opt; /* Suppress 'unref arg' compiler warnings */
-
- if ( gbm -> bpp != 8 )
- return ( GBM_ERR_NOT_SUPP );
-
- if ( !make_output_palette(gbmrgb, grey, opt) )
- return ( GBM_ERR_BAD_OPTION );
-
- if ( (linebuf = malloc(gbm -> w)) == NULL )
- return ( GBM_ERR_MEM );
-
- sprintf(s,
- "P5\n# Written by Generalised Bitmap Module\n%d %d 255\n",
- gbm -> w, gbm -> h);
- write(fd, s, strlen(s));
-
- stride = ((gbm -> w + 3) & ~3);
- p = data + ((gbm -> h - 1) * stride);
- for ( i = gbm -> h - 1; i >= 0; i-- )
- {
- for ( j = 0; j < gbm -> w; j++ )
- linebuf [j] = grey [p [j]];
- write(fd, linebuf, gbm -> w);
- p -= stride;
- }
-
- free(linebuf);
-
- return ( GBM_ERR_OK );
- }
- /*...e*/
- /*...spgm_err:0:*/
- char *pgm_err(GBM_ERR rc)
- {
- switch ( (int) rc )
- {
- case GBM_ERR_PGM_BAD_M:
- return ( "bad maximum pixel intensity" );
- }
- return ( NULL );
- }
- /*...e*/
-