foo2lava.c

来自「Linux下的无线网卡通用驱动程序」· C语言 代码 · 共 1,670 行 · 第 1/3 页

C
1,670
字号
/*GENERALThis program converts pbm (B/W) images and 1-bit-per-pixel cmyk images(both produced by ghostscript) to Zenographics LAVAFLOW format.With this utility, you can print to some HP and Minolta/QMS printers,such as these:    Model 0:     - Konica Minolta magicolor 2490 MF		B/W and color     - Konica Minolta magicolor 2530 DL		B/W and color     - Xerox Phaser 6115MFP			B/W and color    Model 1:     - Konica Minolta magicolor 2480 MF		B/W and colorAUTHORSIt also uses Markus Kuhn's jbig-kit compression library (included, butalso available at http://www.cl.cam.ac.uk/~mgk25/jbigkit/).You can contact the current author at mailto:rick.richardson@comcast.netLICENSEThis program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or (atyour 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.If you want to use this program under different license conditions,then contact the author for an arrangement.It is possible that certain products which can be built using the jbigsoftware module might form inventions protected by patent rights insome countries (e.g., by patents about arithmetic coding algorithmsowned by IBM and AT&T in the USA). Provision of this software by theauthor does NOT include any licenses for any patents. In thosecountries where a patent license is required for certain applicationsof this software module, you will have to obtain such a licenseyourself.*/static char Version[] = "$Id: foo2lava.c,v 1.28 2007/09/19 21:58:22 rick Exp $";#include <stdio.h>#include <stdlib.h>#include <ctype.h>#include <string.h>#include <unistd.h>#include <stdarg.h>#include <time.h>#ifdef linux    #include <sys/utsname.h>#endif#include "jbig.h"/* * Command line options */int	Debug = 0;int	ResX = 1200;int	ResY = 600;int	Bpp = 1;int	PaperCode = 1;char	*PaperStr = "na_letter_8.5x11in";int	PageWidth = 1200 * 8.5;int	PageHeight = 600 * 11;int	UpperLeftX = 0;int	UpperLeftY = 0;int	LowerRightX = 0;int	LowerRightY = 0;int	Copies = 1;int	Duplex = 1;int	SourceCode = 255;int	MediaCode = 0;char	*MediaStr = "plain";char	*Username = NULL;char	*Filename = NULL;int	Mode = 0;		#define MODE_MONO	1		#define MODE_COLOR	2int	Model = 0;		#define MODEL_2530DL	0		#define MODEL_2480MF	1		#define MODEL_LAST	1int	Color2Mono = 0;int	BlackClears = 0;int	AllIsBlack = 0;int	OutputStartPlane = 1;int	ExtraPad = 16;int	LogicalOffsetX = 0;int	LogicalOffsetY = 0;#define LOGICAL_CLIP_X	2#define LOGICAL_CLIP_Y	1int	LogicalClip = LOGICAL_CLIP_X | LOGICAL_CLIP_Y;int	SaveToner = 0;int	PageNum = 0;int	RealWidth;int	EconoMode = 0;int	BihW;int	BihH;int	Dots[4];int	TotalDots;int	IsCUPS = 0;FILE	*EvenPages = NULL;typedef struct{    off_t	b, e;} SEEKREC;SEEKREC	SeekRec[2000];int	SeekIndex = 0;off_t	SeekMedia;long JbgOptions[5] ={    /* Order */    JBG_ILEAVE | JBG_SMID,    /* Options */    JBG_DELAY_AT | JBG_LRLTWO | JBG_TPDON | JBG_TPBON | JBG_DPON,    /* L0 */    128,    /* MX */    0,    /* MY */    0};voidusage(void){    fprintf(stderr,"Usage:\n""   foo2lava [options] <pbmraw-file >lava-file\n""\n""	Convert Ghostscript pbmraw format to a monochrome LAVAFLOW stream,\n""	for driving the Konica Minolta magicolor 2530 DL network color laser\n""	printer and other LAVAFLOW-based black and white printers.\n""\n""	gs -q -dBATCH -dSAFER -dQUIET -dNOPAUSE \\ \n""		-sPAPERSIZE=letter -r1200x600 -sDEVICE=pbmraw \\ \n""		-sOutputFile=- - < testpage.ps \\ \n""	| foo2lava -r1200x600 -g10200x6600 -p1 >testpage.zm\n""\n""   foo2lava [options] <bitcmyk-file >lava-file\n""   foo2lava [options] <pksmraw-file >lava-file\n""\n""	Convert Ghostscript bitcmyk or pksmraw format to a color LAVAFLOW\n""	stream, for driving the Konica Minolta magicolor 2530 DL network\n""	color laser printer.\n""	N.B. Color correction is expected to be performed by ghostscript.\n""\n""	gs -q -dBATCH -dSAFER -dQUIET -dNOPAUSE \\ \n""	    -sPAPERSIZE=letter -g10200x6600 -r1200x600 -sDEVICE=bitcmyk \\ \n""	    -sOutputFile=- - < testpage.ps \\ \n""	| foo2lava -r1200x600 -g10200x6600 -p1 >testpage.zc\n""\n""Normal Options:\n""-c                Force color mode if autodetect doesn't work\n""-d duplex         Duplex code to send to printer [%d]\n""                    1=off, 2=longedge, 3=shortedge\n""                    4=manual longedge, 5=manual shortedge\n""-g <xpix>x<ypix>  Set page dimensions in pixels [%dx%d]\n""-m media          Media code to send to printer [%d]\n""                    1=standard 4=transparency 20=thick stock 22=envelope\n""                    23=letterhead 25=postcard 26=labels 27=recycled\n""                    28=glossy\n""-p paper          Paper code to send to printer [%d]\n""                    1=executive 2=letter 3=legal 25=A5 26=A4 45=B5jis\n""                    65=B5iso 80=envMonarch 81=env#10 90=envDL 91=envC5\n""                    92=envC6 835=4x6\" 837=10x15cm\n""-n copies         Number of copies [%d]\n""-r <xres>x<yres>  Set device resolution in pixels/inch [%dx%d]\n""-s source         Source code to send to printer [%d]\n""                    1=tray 1 (multipurpose) 4=tray 2 255=auto\n""                    Code numbers may vary with printer model\n""-t                Draft mode.  Every other pixel is white.\n""-J filename       Filename string to send to printer [%s]\n""-U username       Username string to send to printer [%s]\n""\n""Printer Tweaking Options:\n""-u <xoff>x<yoff>  Set offset of upper left printable in pixels [%dx%d]\n""-l <xoff>x<yoff>  Set offset of lower right printable in pixels [%dx%d]\n""-L mask           Send logical clipping values from -u/-l in ZjStream [%d]\n""                  0=no, 1=Y, 2=X, 3=XY\n""-A                AllIsBlack: convert C=1,M=1,Y=1 to just K=1\n""-B                BlackClears: K=1 forces C,M,Y to 0\n""                  -A, -B work with bitcmyk input only\n""-P                Do not output START_PLANE codes.  May be needed by some\n""                  some black and white only printers.\n""-X padlen         Add extra zero padding to the end of BID segments [%d]\n""-z model          Model: 0=2530DL (LAVAFLOW), 1=2480MF (OPL) [%d]\n""\n""Debugging Options:\n""-S plane          Output just a single color plane from a color print [all]\n""                  1=Cyan, 2=Magenta, 3=Yellow, 4=Black\n""-D lvl            Set Debug level [%d]\n""-V                Version %s\n"    , Duplex    , PageWidth , PageHeight    , MediaCode    , PaperCode    , Copies    , ResX , ResY    , SourceCode    , Filename ? Filename : ""    , Username ? Username : ""    , UpperLeftX , UpperLeftY    , LowerRightX , LowerRightY    , LogicalClip    , ExtraPad    , Model    , Debug    , Version    );  exit(1);}/* * Mirror1: bits 01234567 become 76543210 */unsigned char	Mirror1[256] ={	  0,128, 64,192, 32,160, 96,224, 16,144, 80,208, 48,176,112,240,	  8,136, 72,200, 40,168,104,232, 24,152, 88,216, 56,184,120,248,	  4,132, 68,196, 36,164,100,228, 20,148, 84,212, 52,180,116,244,	 12,140, 76,204, 44,172,108,236, 28,156, 92,220, 60,188,124,252,	  2,130, 66,194, 34,162, 98,226, 18,146, 82,210, 50,178,114,242,	 10,138, 74,202, 42,170,106,234, 26,154, 90,218, 58,186,122,250,	  6,134, 70,198, 38,166,102,230, 22,150, 86,214, 54,182,118,246,	 14,142, 78,206, 46,174,110,238, 30,158, 94,222, 62,190,126,254,	  1,129, 65,193, 33,161, 97,225, 17,145, 81,209, 49,177,113,241,	  9,137, 73,201, 41,169,105,233, 25,153, 89,217, 57,185,121,249,	  5,133, 69,197, 37,165,101,229, 21,149, 85,213, 53,181,117,245,	 13,141, 77,205, 45,173,109,237, 29,157, 93,221, 61,189,125,253,	  3,131, 67,195, 35,163, 99,227, 19,147, 83,211, 51,179,115,243,	 11,139, 75,203, 43,171,107,235, 27,155, 91,219, 59,187,123,251,	  7,135, 71,199, 39,167,103,231, 23,151, 87,215, 55,183,119,247,	 15,143, 79,207, 47,175,111,239, 31,159, 95,223, 63,191,127,255,};/* * Mirror2: bits 01234567 become 67452301 */unsigned char	Mirror2[256] ={	  0, 64,128,192, 16, 80,144,208, 32, 96,160,224, 48,112,176,240,	  4, 68,132,196, 20, 84,148,212, 36,100,164,228, 52,116,180,244,	  8, 72,136,200, 24, 88,152,216, 40,104,168,232, 56,120,184,248,	 12, 76,140,204, 28, 92,156,220, 44,108,172,236, 60,124,188,252,	  1, 65,129,193, 17, 81,145,209, 33, 97,161,225, 49,113,177,241,	  5, 69,133,197, 21, 85,149,213, 37,101,165,229, 53,117,181,245,	  9, 73,137,201, 25, 89,153,217, 41,105,169,233, 57,121,185,249,	 13, 77,141,205, 29, 93,157,221, 45,109,173,237, 61,125,189,253,	  2, 66,130,194, 18, 82,146,210, 34, 98,162,226, 50,114,178,242,	  6, 70,134,198, 22, 86,150,214, 38,102,166,230, 54,118,182,246,	 10, 74,138,202, 26, 90,154,218, 42,106,170,234, 58,122,186,250,	 14, 78,142,206, 30, 94,158,222, 46,110,174,238, 62,126,190,254,	  3, 67,131,195, 19, 83,147,211, 35, 99,163,227, 51,115,179,243,	  7, 71,135,199, 23, 87,151,215, 39,103,167,231, 55,119,183,247,	 11, 75,139,203, 27, 91,155,219, 43,107,171,235, 59,123,187,251,	 15, 79,143,207, 31, 95,159,223, 47,111,175,239, 63,127,191,255,};/* * Mirror4: bits 01234567 become 45670123 */unsigned char	Mirror4[256] ={	  0, 16, 32, 48, 64, 80, 96,112,128,144,160,176,192,208,224,240,	  1, 17, 33, 49, 65, 81, 97,113,129,145,161,177,193,209,225,241,	  2, 18, 34, 50, 66, 82, 98,114,130,146,162,178,194,210,226,242,	  3, 19, 35, 51, 67, 83, 99,115,131,147,163,179,195,211,227,243,	  4, 20, 36, 52, 68, 84,100,116,132,148,164,180,196,212,228,244,	  5, 21, 37, 53, 69, 85,101,117,133,149,165,181,197,213,229,245,	  6, 22, 38, 54, 70, 86,102,118,134,150,166,182,198,214,230,246,	  7, 23, 39, 55, 71, 87,103,119,135,151,167,183,199,215,231,247,	  8, 24, 40, 56, 72, 88,104,120,136,152,168,184,200,216,232,248,	  9, 25, 41, 57, 73, 89,105,121,137,153,169,185,201,217,233,249,	 10, 26, 42, 58, 74, 90,106,122,138,154,170,186,202,218,234,250,	 11, 27, 43, 59, 75, 91,107,123,139,155,171,187,203,219,235,251,	 12, 28, 44, 60, 76, 92,108,124,140,156,172,188,204,220,236,252,	 13, 29, 45, 61, 77, 93,109,125,141,157,173,189,205,221,237,253,	 14, 30, 46, 62, 78, 94,110,126,142,158,174,190,206,222,238,254,	 15, 31, 47, 63, 79, 95,111,127,143,159,175,191,207,223,239,255,};int BlackOnes[256] ={    0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4,    1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,    1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,    2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,    1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,    2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,    2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,    3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,    1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,    2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,    2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,    3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,    2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,    3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,    3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,    4, 5, 5, 6, 5, 6, 6, 7, 5, 6, 6, 7, 6, 7, 7, 8};voidrotate_bytes_180(unsigned char *sp, unsigned char *ep, unsigned char *mirror){unsigned char tmp;    while (sp < ep)    {	tmp = mirror[*sp];	*sp = mirror[*ep];	*ep = tmp;	++sp;	--ep;    }    if (sp == ep)	*sp = mirror[*sp];}voiddebug(int level, char *fmt, ...){    va_list ap;    if (Debug < level)	return;    setvbuf(stderr, (char *) NULL, _IOLBF, BUFSIZ);    va_start(ap, fmt);    vfprintf(stderr, fmt, ap);    va_end(ap);}voiderror(int fatal, char *fmt, ...){    va_list ap;    va_start(ap, fmt);    vfprintf(stderr, fmt, ap);    va_end(ap);    if (fatal)	exit(fatal);}/* * A linked list of compressed data */typedef struct _BIE_CHAIN{    unsigned char	*data;    size_t		len;    struct _BIE_CHAIN	*next;} BIE_CHAIN;voidfree_chain(BIE_CHAIN *chain){    BIE_CHAIN	*next;    next = chain;    while ((chain = next))    {	next = chain->next;	if (chain->data)	    free(chain->data);	free(chain);    }}intwrite_plane(int planeNum, BIE_CHAIN **root, FILE *fp){    BIE_CHAIN	*current = *root;    BIE_CHAIN	*next;    int		len;    debug(3, "Write Plane %d\n", planeNum);     /* error handling */    if (!current) 	error(1,"There is no JBIG!\n");     if (!current->next)	error(1,"There is no or wrong JBIG header!\n");     if (current->len != 20)	error(1,"wrong BIH length\n");     if (Model == MODEL_2480MF)    {	int w, h, x = 0;	switch (planeNum)	{	case 1: x = 0x00FFFF; break;	case 2: x = 0xFF00FF; break;	case 3: x = 0xFFFF00; break;	}	fprintf(fp, "RasterObject.Planes=%06X,0,0,0,0,0,0;", x);	/* startpage, jbig_bih, jbig_bid, jbig_end, endpage */	w = (((long) current->data[ 4] << 24)	    | ((long) current->data[ 5] << 16)	    | ((long) current->data[ 6] <<  8)	    | (long) current->data[ 7]);	h = (((long) current->data[ 8] << 24)	    | ((long) current->data[ 9] << 16)	    | ((long) current->data[10] <<  8)	    | (long) current->data[11]);	fprintf(fp, "RasterObject.Width=%d;", w);	fprintf(fp, "RasterObject.Height=%d;", h);    }    for (current = *root; current && current->len; current = current->next)    {	if (current == *root)	{	    switch (Model)	    {	    case MODEL_2530DL:		fprintf(fp, "\033*b20V");		fwrite(current->data, 1, current->len, fp);		break;	    case MODEL_2480MF:		fprintf(fp, "RasterObject.Data#%d=", (int) current->len);		fwrite(current->data, 1, current->len, fp);		fprintf(fp, ";");		break;	    }	}	else	{	    int i;	    int pad;	    #define PAD 32	    len = current->len;	    next = current->next;	    if (!next || !next->len)                pad = PAD * ((len+PAD-1)/PAD) - len;            else                pad = 0;	    switch (Model)	    {	    case MODEL_2530DL:		fprintf(fp, "\033*b%d%s", len + pad, next ? "V" : "W");		fwrite(current->data, 1, len, fp);		for (i = 0; i < pad; i++)		    putc(0, fp);		break;	    case MODEL_2480MF:		fprintf(fp, "RasterObject.Data#%d=", len + pad);		fwrite(current->data, 1, len, fp);		for (i = 0; i < pad; i++)		    putc(0, fp);		fprintf(fp, ";");		break;	    }	}    }    free_chain(*root);    if (Model == MODEL_2530DL)    {	switch (planeNum)	{	case 0: case 4:	    fprintf(fp, "\033*x%dK", Dots[3]);	    fprintf(fp, "\033*x%dW", TotalDots - Dots[3]);	    break;	case 1:	    fprintf(fp, "\033*x%dC", Dots[0]);	    fprintf(fp, "\033*x%dZ", TotalDots - Dots[0]);	    break;	case 2:	    fprintf(fp, "\033*x%dM", Dots[1]);	    fprintf(fp, "\033*x%dV", TotalDots - Dots[1]);	    break;	case 3:	    fprintf(fp, "\033*x%dY", Dots[2]);	    fprintf(fp, "\033*x%dU", TotalDots - Dots[2]);	    break;	}    }    return 0;}voidstart_page(BIE_CHAIN **root, int nbie, FILE *ofp){    BIE_CHAIN		*current = *root;    unsigned long	w, h;    int			i, np;    static int		pageno = 0;    /* error handling */    if (!current)	error(1, "There is no JBIG!\n");     if (!current->next)	error(1, "There is no or wrong JBIG header!\n");     if (current->len != 20 )	error(1,"wrong BIH length\n");   /* startpage, jbig_bih, jbig_bid, jbig_end, endpage */    w = (((long) current->data[ 4] << 24)	    | ((long) current->data[ 5] << 16)	    | ((long) current->data[ 6] <<  8)	    | (long) current->data[ 7]);    h = (((long) current->data[ 8] << 24)	    | ((long) current->data[ 9] << 16)	    | ((long) current->data[10] <<  8)	    | (long) current->data[11]);    TotalDots = w*h;    switch (Model)    {    case MODEL_2530DL:	fprintf(ofp, "\033&l%dO", 0);	fprintf(ofp, "\033*r%dU", Mode == MODE_COLOR ? -1004 : 1);	fprintf(ofp, "\033*g%dW", Mode == MODE_COLOR ? 26 : 8);	putc(2, ofp);	putc(nbie, ofp);	np = Mode == MODE_COLOR ? 4 : 1;	for (i = 0; i < np; ++i)	{	    putc(ResX>>8, ofp);	    putc(ResX, ofp);	    putc(ResY>>8, ofp);	    putc(ResY, ofp);	    putc(0, ofp);	    //putc(Mode == MODE_COLOR ? 2 : 0, ofp);	// Number of bpc	    putc(2, ofp);	}	fprintf(ofp, "\033*b%dM", 1234);	fprintf(ofp, "\033&l%dA", PaperCode);	if (PaperCode == 101)	{	    fprintf(ofp, "\033&f%dG", PageHeight * 720 / ResY);	// Custom Y

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?