home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-3.iso / Graphics / convertors / tifftoeps.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-23  |  4.1 KB  |  182 lines

  1. /*
  2.  * tifftoeps - convert AppleScanned .tiff file to EPSF
  3.  * Eric P. Scott, San Francisco State University, September 1989
  4.  *
  5.  * Disclaimer: this is a cheap hack; it does not attempt to
  6.  * handle arbitrary .tiff files, nor does it make use of all the
  7.  * information available to it.  In particular, the XResolution
  8.  * and YResolution tags are ignored.  Heck, it doesn't even
  9.  * accept little-endian TIFF...
  10.  *
  11.  * Future versions may (will?) support other kinds of scanners.
  12.  *
  13.  */
  14. #include <stdio.h>
  15. static char sccsid[]="@(#)tifftoeps   1.0  (SFSU)  9/15/89";
  16. int iwidth=0, ilen=0, bits=0, invert=255;
  17. long stripoff=0L;
  18. main(argc, argv)
  19. int argc;
  20. char *argv[];
  21. {
  22.     char *malloc();
  23.     register int i;
  24.     register long value;
  25.     long sig, ifdoff;
  26.     short ifditems;
  27.     struct ifdent {
  28.         short ifd_tag;
  29.         short ifd_type;
  30.         long ifd_len;
  31.         union {
  32.             unsigned long ifd_long;
  33.             unsigned short ifd_short;
  34.             unsigned char ifd_byte;
  35.         } ifd_off;
  36.     } *ifdp;
  37.  
  38.     if (argc!=2) {
  39.         fprintf(stderr, "Usage: %s tiff-file\n", *argv);
  40.         exit(1);
  41.     }
  42.     if (strcmp(argv[1], "-")&&!freopen(argv[1], "r", stdin)) {
  43.         perror(argv[1]);
  44.         exit(1);
  45.     }
  46.     if (fread((char *)&sig, sizeof sig, 1, stdin)!=1) {
  47.         perror("fread");
  48.         exit(1);
  49.     }
  50.     if (sig!=0x4d4d002a) {
  51.         fprintf(stderr, "%s: that's not a TIFF file!\n", *argv);
  52.         exit(1);
  53.     }
  54.     if (fread((char *)&ifdoff, sizeof ifdoff, 1, stdin)!=1) {
  55.         perror("fread");
  56.         exit(1);
  57.     }
  58.     if (fseek(stdin, ifdoff, 0)<0L) {
  59.         perror("fseek");
  60.         exit(1);
  61.     }
  62.     if (fread((char *)&ifditems, sizeof ifditems, 1, stdin)!=1) {
  63.         perror("fread");
  64.         exit(1);
  65.     }
  66.     if (!(ifdp=(struct ifdent *)malloc(ifditems*sizeof (struct ifdent)))) {
  67.         perror("malloc");
  68.         exit(1);
  69.     }
  70.     if (fread((char *)ifdp, sizeof (struct ifdent), ifditems, stdin)!=
  71.         ifditems) {
  72.         perror("fread");
  73.         exit(1);
  74.     }
  75.     for (i=0;i<ifditems;i++) {
  76.         switch (ifdp->ifd_type) {
  77.         case 1:
  78.             value=ifdp->ifd_off.ifd_byte;
  79.             break;
  80.         case 3:
  81.             value=ifdp->ifd_off.ifd_short;
  82.             break;
  83.         case 4:
  84.             value=ifdp->ifd_off.ifd_long;
  85.             break;
  86.         default: /* ifdp->ifd_off.ifd_long is offset */
  87.             value=0L;    /* do The Wrong Thing(tm) */
  88.             break;
  89.         }
  90.         switch (ifdp->ifd_tag) {
  91.         case 256:    /* ImageWidth */
  92.             iwidth=value;
  93.             break;
  94.         case 257:    /* ImageLength */
  95.             ilen=value;
  96.             break;
  97.         case 258:    /* BitsPerSample */
  98.             bits=value;
  99.             break;
  100.         case 259:    /* Compression */
  101.             if (value!=1) {
  102.                 fprintf(stderr, "%s: Compression=%ld\n",
  103.                     *argv, value);
  104.                 exit(1);
  105.             }
  106.             break;
  107.         case 262:    /* PhotometricInterpretation */
  108.             switch (value) {
  109.             case 0:
  110.                 invert=255;
  111.                 break;
  112.             case 1:
  113.                 invert=0;
  114.                 break;
  115.             default:
  116.                 fprintf(stderr,
  117. "%s: PhotometricInterpretation=%ld\n", *argv, value);
  118.                 if (value==5) fputs("\tI don't grok alpha\n",
  119.                     stderr);
  120.                 exit(1);
  121.                 break;
  122.             }
  123.             break;
  124.         case 273:
  125.             stripoff=value;
  126.             break;
  127.         case 277:    /* SamplesPerPixel */
  128.             if (value!=1) {
  129.                 fprintf(stderr, "%s: SamplesPerPixel=%ld\n",
  130.                     *argv, value);
  131.                 exit(1);
  132.             }
  133.             break;
  134. #ifdef NOTDEF
  135.         case 284:    /* PlanarConfiguration */
  136.             break;
  137. #endif
  138.         default:
  139.             break;
  140.         }
  141.         ifdp++;
  142.     }
  143.     if (iwidth<=0L) {
  144.         fprintf(stderr, "%s: missing ImageWidth\n", *argv);
  145.         exit(1);
  146.     }
  147.     if (ilen<=0L) {
  148.         fprintf(stderr, "%s: missing ImageLength\n", *argv);
  149.         exit(1);
  150.     }
  151.     if (bits<=0L) {
  152.         fprintf(stderr, "%s: missing BitsPerSample\n", *argv);
  153.         exit(1);
  154.     }
  155.     if (stripoff<=0L) {
  156.         fprintf(stderr, "%s: missing StripOffsets\n", *argv);
  157.         exit(1);
  158.     }
  159.     if (fseek(stdin, stripoff, 0L)<0L) {
  160.         perror("fseek");
  161.         exit(1);
  162.     }
  163.     fputs("%!PS-Adobe-2.0 EPSF-1.2\n%%Creator:tifftoeps\n\
  164. %%Origin:0 720\n%%BoundingBox: 0 0 ", stdout);
  165.     printf("%d %d", iwidth, ilen);
  166.     fputs("\n%%EndComments\n/picstr ", stdout);
  167.     printf("%ld", ((long)iwidth*bits+7L)/8L);
  168.     fputs(" string def\ngsave\n0 0 translate\n1 1 scale\n", stdout);
  169.     printf("%d %d scale\n%d %d %d\n", iwidth, ilen, iwidth, ilen, bits);
  170.     printf("[%d 0 0 %d neg 0 %d]\n", iwidth, ilen, ilen);
  171.     fputs("{currentfile picstr readhexstring pop}\nimage", stdout);
  172.     sig=(((long)iwidth*bits+7L)/8L)*ilen;
  173.     value=0L; while ((i=getchar())!=EOF) {
  174.         if (value>=sig) break;
  175.         if ((value&31)==0) putchar('\n');
  176.         printf("%02X", i^invert);
  177.         value++;
  178.     }
  179.     fputs("\n\n\ngrestore\n", stdout);
  180.     exit(0);
  181. }
  182.