home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / gnu / gs-2.6.1.4-src.lha / src / amiga / gs-2.6.1.4 / gdevpcx.c < prev    next >
C/C++ Source or Header  |  1994-01-27  |  10KB  |  336 lines

  1. /* Copyright (C) 1992, 1993 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* gdevpcx.c */
  20. /* PCX file format devices for Ghostscript */
  21. #include "gdevprn.h"
  22. #include "gdevpccm.h"
  23. #include "gxlum.h"
  24.  
  25. /* Thanks to Phil Conrad for donating the original version */
  26. /* of these drivers to Aladdin Enterprises. */
  27.  
  28. /* ------ The device descriptors ------ */
  29.  
  30. /*
  31.  * Default X and Y resolution.
  32.  */
  33. #define X_DPI 72
  34. #define Y_DPI 72
  35.  
  36. /* Monochrome. */
  37.  
  38. private dev_proc_print_page(pcxmono_print_page);
  39.  
  40. gx_device_printer far_data gs_pcxmono_device =
  41.   prn_device(prn_std_procs, "pcxmono",
  42.     DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  43.     X_DPI, Y_DPI,
  44.     0,0,0,0,            /* margins */
  45.     1, pcxmono_print_page);
  46.  
  47. /* Chunky 8-bit gray scale. */
  48.  
  49. private dev_proc_print_page(pcx256_print_page);
  50.  
  51. private dev_proc_map_rgb_color(pcxgray_map_rgb_color);
  52. private dev_proc_map_color_rgb(pcxgray_map_color_rgb);
  53.  
  54. private gx_device_procs pcxgray_procs =
  55.   prn_color_procs(gdev_prn_open, gdev_prn_output_page, gdev_prn_close,
  56.     pcxgray_map_rgb_color, pcxgray_map_color_rgb);
  57. gx_device_printer far_data gs_pcxgray_device =
  58.   prn_device(pcxgray_procs, "pcxgray",
  59.     DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  60.     X_DPI, Y_DPI,
  61.     0,0,0,0,            /* margins */
  62.     8, pcx256_print_page);
  63.  
  64. /* 4-bit planar (EGA/VGA-style) color. */
  65.  
  66. private dev_proc_print_page(pcx16_print_page);
  67.  
  68. private gx_device_procs pcx16_procs =
  69.   prn_color_procs(gdev_prn_open, gdev_prn_output_page, gdev_prn_close,
  70.     pc_4bit_map_rgb_color, pc_4bit_map_color_rgb);
  71. gx_device_printer far_data gs_pcx16_device =
  72.   prn_device(pcx16_procs, "pcx16",
  73.     DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  74.     X_DPI, Y_DPI,
  75.     0,0,0,0,            /* margins */
  76.     4, pcx16_print_page);
  77.  
  78. /* Chunky 8-bit (SuperVGA-style) color. */
  79. /* (Uses a fixed palette of 3,3,2 bits.) */
  80.  
  81. private gx_device_procs pcx256_procs =
  82.   prn_color_procs(gdev_prn_open, gdev_prn_output_page, gdev_prn_close,
  83.     pc_8bit_map_rgb_color, pc_8bit_map_color_rgb);
  84. gx_device_printer far_data gs_pcx256_device =
  85.   prn_device(pcx256_procs, "pcx256",
  86.     DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  87.     X_DPI, Y_DPI,
  88.     0,0,0,0,            /* margins */
  89.     8, pcx256_print_page);
  90.  
  91. /* ------ Private definitions ------ */
  92.  
  93. /* All two-byte quantities are stored LSB-first! */
  94. #if arch_is_big_endian
  95. #  define assign_ushort(a,v) a = ((v) >> 8) + ((v) << 8)
  96. #else
  97. #  define assign_ushort(a,v) a = (v)
  98. #endif
  99.  
  100. typedef struct pcx_header_s {
  101.     byte     manuf;        /* always 0x0a */
  102.     byte    version;    /* version info = 0,2,3,5 */
  103.     byte    encoding;    /* 1=RLE */
  104.     byte    bpp;        /* bits per pixel */
  105.     ushort    x1;        /* picture dimensions */
  106.     ushort    y1;
  107.     ushort    x2;
  108.     ushort    y2;
  109.     ushort    hres;        /* horz. resolution */
  110.     ushort    vres;        /* vert. resolution */
  111.     byte    palette[16*3];    /* color palette */
  112.     byte    reserved;
  113.     byte    nplanes;    /* number of color planes */
  114.     ushort    bpl;        /* number of bytes per line (uncompressed) */
  115.     ushort    palinfo;    /* palette info 1=color, 2=grey */
  116.     byte    xtra[58];    /* fill out header to 128 bytes */
  117. } pcx_header;
  118.  
  119. /* 
  120. ** version info for PCX is as follows 
  121. **
  122. ** 0 == 2.5
  123. ** 2 == 2.8 w/palette info
  124. ** 3 == 2.8 without palette info
  125. ** 5 == 3.0 (includes palette)
  126. **
  127. */
  128.  
  129. /* Forward declarations */
  130. private void pcx_write_rle(P3(const byte *, const byte *, FILE *));
  131. private int pcx_write_page(P4(gx_device_printer *, FILE *, pcx_header _ss *, int));
  132.  
  133. /* Write a monochrome PCX page. */
  134. private int
  135. pcxmono_print_page(gx_device_printer *pdev, FILE *file)
  136. {    pcx_header header;
  137.     header.bpp = 1;
  138.     header.nplanes = 1;
  139.     /* Set the first two entries of the short palette. */
  140.     memcpy((byte *)header.palette, "\377\377\377\000\000\000", 6);
  141.     return pcx_write_page(pdev, file, &header, 0);
  142. }
  143.  
  144. /* Write an "old" PCX page. */
  145. static const byte ega_palette[16*3] = {
  146.   0x00,0x00,0x00,  0x00,0x00,0xaa,  0x00,0xaa,0x00,  0x00,0xaa,0xaa,
  147.   0xaa,0x00,0x00,  0xaa,0x00,0xaa,  0xaa,0xaa,0x00,  0xaa,0xaa,0xaa,
  148.   0x55,0x55,0x55,  0x55,0x55,0xff,  0x55,0xff,0x55,  0x55,0xff,0xff,
  149.   0xff,0x55,0x55,  0xff,0x55,0xff,  0xff,0xff,0x55,  0xff,0xff,0xff
  150. };
  151. private int
  152. pcx16_print_page(gx_device_printer *pdev, FILE *file)
  153. {    pcx_header header;
  154.     header.bpp = 1;
  155.     header.nplanes = 4;
  156.     /* Fill the EGA palette appropriately. */
  157.     memcpy((byte *)header.palette, ega_palette, sizeof(ega_palette));
  158.     return pcx_write_page(pdev, file, &header, 1);
  159. }
  160.  
  161. /* Write a "new" PCX page. */
  162. private int
  163. pcx256_print_page(gx_device_printer *pdev, FILE *file)
  164. {    pcx_header header;
  165.     int code;
  166.     header.bpp = 8;
  167.     header.nplanes = 1;
  168.     /* Clear the EGA palette */
  169.     memset((byte *)header.palette, 0, sizeof(header.palette));
  170.     code = pcx_write_page(pdev, file, &header, 0);
  171.     if ( code >= 0 )
  172.     {    /* Write out the palette. */
  173.         fputc(0x0c, file);
  174.         code = pc_write_palette((gx_device *)pdev, 256, file);
  175.     }
  176.     return code;
  177. }
  178.  
  179. /* Write out a page in PCX format. */
  180. /* This routine is used for all four formats (monochrome, gray scale, */
  181. /* planar "8-bit" actually 4-bit color, and chunky 8-bit color.) */
  182. private int
  183. pcx_write_page(gx_device_printer *pdev, FILE *file, pcx_header _ss *phdr,
  184.   int planar)
  185. {    int orig_raster = gdev_prn_raster(pdev);
  186.     int raster = round_up(orig_raster, 2);    /* PCX format requires even */
  187.     uint rsize = round_up((pdev->width + 7) >> 3, 2);    /* ditto */
  188.     int height = pdev->height;
  189.     int depth = pdev->color_info.depth;
  190.     byte *line = (byte *)gs_malloc(raster + rsize, 1, "pcx file buffer");
  191.     byte *plane = line + raster;
  192.     int y;
  193.     int code = 0;            /* return code */
  194.     if ( line == 0 )        /* can't allocate line buffer */
  195.         return_error(gs_error_VMerror);
  196.  
  197.     /* Set up the header struct. */
  198.  
  199.     phdr->manuf = 10;
  200.     phdr->version = 5;
  201.     phdr->encoding = 1;    /* 1 for rle 8-bit encoding */
  202.     /* bpp was set by the caller */
  203.     phdr->x1 = 0;
  204.     phdr->y1 = 0;
  205.     assign_ushort(phdr->x2, pdev->width-1);
  206.     assign_ushort(phdr->y2, height-1);
  207.     assign_ushort(phdr->hres, (int)pdev->x_pixels_per_inch);
  208.     assign_ushort(phdr->vres, (int)pdev->y_pixels_per_inch);
  209.     phdr->reserved = 0;
  210.     /* nplanes was set by the caller */
  211.     assign_ushort(phdr->bpl, (planar && depth > 1 ? rsize : raster));
  212.     assign_ushort(phdr->palinfo, (gx_device_has_color(pdev) ? 1 : 2));
  213.  
  214.     /* Write the header. */
  215.  
  216.     if ( fwrite((const char *)phdr, 1, 128, file) < 128 )
  217.        {    code = gs_error_ioerror;
  218.         goto pcx_done;
  219.        }
  220.  
  221.     /* Dump the contents of the image. */
  222.     for ( y = 0; y < height; y++ )
  223.     {    byte *row;
  224.         byte *end;
  225.         int code = gdev_prn_get_bits(pdev, y, line, &row);
  226.         if ( code < 0 ) break;
  227.         end = row + raster;
  228.         /* Clear an odd trailing byte. */
  229.         if ( orig_raster & 1 )
  230.             end[-1] = 0;
  231.         switch ( depth )
  232.            {
  233.         case 1:
  234.            {    /* PCX assumes 0=black, 1=white. */
  235.             register byte *bp;
  236.             for ( bp = row; bp < end; bp++ )
  237.                 *bp = ~*bp;
  238.             pcx_write_rle(row, end, file);
  239.            }
  240.             break;
  241.         case 8:
  242.            {    register int shift;
  243.  
  244.             if ( !gx_device_has_color(pdev) )
  245.                {    /* Can't map gray scale */
  246.                 code = gs_error_undefinedresult;
  247.                 goto pcx_done;
  248.                }
  249.  
  250.             if ( !planar )
  251.                {    /* Just write the bits */
  252.                 pcx_write_rle(row, end, file);
  253.                 break;
  254.                }
  255.  
  256.             for ( shift = 0; shift < 4; shift++ )
  257.             {    register byte *from, *to;
  258.                 register int bmask = 1 << shift;
  259.                 for ( from = row, to = plane;
  260.                       from < end; from += 8
  261.                     )
  262.                 {    *to++ =
  263.                       ((((uint)from[0] & bmask) << 7) +
  264.                        (((uint)from[1] & bmask) << 6) +
  265.                        (((uint)from[2] & bmask) << 5) +
  266.                        (((uint)from[3] & bmask) << 4) +
  267.                        (((uint)from[4] & bmask) << 3) +
  268.                        (((uint)from[5] & bmask) << 2) +
  269.                        (((uint)