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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478
|
/*
This file is part of GNU Ghostscript.
GNU Ghostscript is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to
anyone for the consequences of using it or for whether it serves any
particular purpose or works at all, unless he says so in writing. Refer to
the GNU General Public License for full details.
Everyone is granted permission to copy, modify and redistribute GNU
Ghostscript, but only under the conditions described in the GNU General
Public License. A copy of this license is supposed to have been given to
you along with GNU Ghostscript so you can know your rights and
responsibilities. It should be in a file named COPYING. Among other
things, the copyright notice and this notice must be preserved on all
copies.
Aladdin Enterprises is not affiliated with the Free Software Foundation or
the GNU Project. GNU Ghostscript, as distributed by Aladdin Enterprises,
does not depend on any other GNU software.
*/
/* gdevgdi.c */
/* SAMSUNG GDI driver for Ghostscript */
#include "gdevprn.h"
#include "gdevpcl.h"
/*
* You may select a default resolution of 300 or 600 DPI
* in the makefile, or an actual resolution
* on the gs command line.
*
* If the preprocessor symbol A4 is defined, the default paper size is
* the European A4 size; otherwise it is the U.S. letter size (8.5"x11").
*
* To determine the proper "margin" settings for your printer, see the
* file align.ps.
*/
/* Define the default, maximum resolutions. */
#ifdef X_DPI
# define X_DPI2 X_DPI
#else
# define X_DPI 300
# define X_DPI2 600
#endif
#ifdef Y_DPI
# define Y_DPI2 Y_DPI
#else
# define Y_DPI 300
# define Y_DPI2 600
#endif
#define GDI_FALSE 0
#define GDI_TRUE 1
#define GDI_MAX_COUNT 31
#define GDI_NO_REPEAT_IDX 0x80000000L
#define GDI_DATA_LENGTH 11
#define GDI_REPEAT_LENGTH 2
#define GDI_BAND_HEIGHT 128
#define GDI_MAX_BAND 66
/*#define GDI_BAND_WIDTH 4928*/
/*#define GDI_BAND_WIDTH_BYTES (((GDI_BAND_WIDTH + 31)/32)*4)*/
#define GDI_PRE_COMP 2
#define GDI_REAL_COMP 0
#define GDI_COMP_NONE 0
#define GDI_COMP_TIFF 3
#define GDI_COMP_SCANLINE 4
#define GDI_COMP_MODITIFF 6
#define GDI_COMP_NOSEND 0x7f
#define GDI_MARGINS_A4 0.167f, 0.167f, 0.167f, 0.167f
#define GDI_MARGINS_LETTER 0.167f, 0.167f, 0.167f, 0.167f
/*#define GDI_MARGINS_A4 0.0, 0.0, 0.0, 0.0*/
/*#define GDI_MARGINS_LETTER 0.0, 0.0, 0.0, 0.0*/
/* The number of blank lines that make it worthwhile to reposition */
/* the cursor. */
#define MIN_SKIP_LINES 7
/* We round up the LINE_SIZE to a multiple of a unsigned long for faster scanning. */
#define W sizeof(word)
int GDI_BAND_WIDTH[] = {4768, 4928};
static int gdi_print_page(gx_device_printer *pdev, gp_file *prn_stream);
static int gdi_open(gx_device *pdev);
static int gdi_close(gx_device *pdev);
/* The device descriptors */
static dev_proc_open_device(gdi_open);
static dev_proc_close_device(gdi_close);
static dev_proc_print_page(gdi_print_page);
static void
gdi_initialize_device_procs(gx_device *dev)
{
gdev_prn_initialize_device_procs_mono(dev);
set_dev_proc(dev, open_device, gdi_open);
set_dev_proc(dev, close_device, gdi_close);
}
gx_device_printer far_data gs_gdi_device =
prn_device(gdi_initialize_device_procs, "gdi",
DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, /* paper size (unit : 10/72 inch size) */
X_DPI2, Y_DPI2,
0.20, 0.25, 0.25, 0.25, /* margins filled in by gdi_open */
1, /* color bit */
gdi_print_page);
gx_device_printer far_data gs_samsunggdi_device =
prn_device(gdi_initialize_device_procs, "samsunggdi",
DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, /* paper size (unit : 10/72 inch size) */
X_DPI2, Y_DPI2,
0.20, 0.25, 0.25, 0.25, /* margins filled in by gdi_open */
1, /* color bit */
gdi_print_page);
static gp_file *WritePJLHeaderData(gx_device_printer *pdev, gp_file *fp);
static gp_file *WriteBandHeader(gp_file *fp, unsigned int usBandNo,
unsigned char ubCompMode, unsigned int usBandWidth,
unsigned int usBandHeight, unsigned long ulBandSize);
static gp_file *WriteTrailerData(gp_file *fp);
static unsigned long FrameTiffComp(unsigned char *pubDest, unsigned char *pubSrc,
unsigned int usTotalLines, unsigned int usBytesPerLine,
unsigned char ubMode);
static unsigned int FrameTiff_Comp(unsigned char *lpSrcBuf, unsigned char *lpTgtBuf,
unsigned int nSrcBytes);
static unsigned int PreTiffComp(unsigned char *lpSrcBuf, unsigned int nSrcBytes);
static long bmp2run(unsigned char *out_buf, unsigned char *in_buf, unsigned int sizeY, unsigned int sizeX, unsigned char ubMode);
#define ppdev ((gx_device_printer *)pdev)
/* Open the printer, adjusting the margins if necessary. */
static int
gdi_open(gx_device *pdev)
{ /* Change the margins if necessary. */
const float *m = 0;
bool move_origin = true;
static const float m_a4[4] = { GDI_MARGINS_A4 };
static const float m_letter[4] = { GDI_MARGINS_LETTER };
m = (gdev_pcl_paper_size(pdev) == PAPER_SIZE_A4 ? m_a4 :
m_letter);
move_origin = false;
if ( m != 0 )
gx_device_set_margins(pdev, m, move_origin);
return gdev_prn_open(pdev);
}
/* gdi_close is only here to eject odd numbered pages in duplex mode. */
static int
gdi_close(gx_device *pdev)
{
if ( ppdev->Duplex_set >= 0 && ppdev->Duplex )
{
int code = gdev_prn_open_printer(pdev, 1);
if (code >= 0)
gp_fputs("\033&l0H", ppdev->file) ;
}
return gdev_prn_close(pdev);
}
#undef ppdev
/* ------ Internal routines ------ */
/* Samsung SmartGDI series compresses, and it needs a special sequence to */
/* allow it to specify coordinates at 600 dpi. */
/* It too needs its coordinate system translated slightly. */
static int
gdi_print_page(gx_device_printer *pdev, gp_file *prn_stream)
{
int band_width_bytes;
int band_height;
int code=0, i, j, y, num_rows=0, band_num=0;
int dots_per_inch = (int)pdev->y_pixels_per_inch;
int raster = gx_device_raster((gx_device *)pdev, true);
int real_line_width;
long ul_band_size, ul_comp_size;
/* long ul_tiff_size, ul_min_size; */
byte *ibp=NULL, *obp=NULL, *tmp=NULL;
byte paper_type=0, compression_type;
switch (gdev_pcl_paper_size((gx_device*)pdev))
{
case PAPER_SIZE_A4 : paper_type = 0;
break;
case PAPER_SIZE_LETTER : paper_type = 1;
break;
case PAPER_SIZE_LEGAL : paper_type = 1;
break;
default:
paper_type = 1;
break;
}
if (dots_per_inch == 600) { /* 600dpi */
band_width_bytes = (GDI_BAND_WIDTH[paper_type]+31)/32*4;
band_height = GDI_BAND_HEIGHT;
} else { /* 300dpi */
band_width_bytes = (GDI_BAND_WIDTH[paper_type]+31)/32*4/2;
band_height = GDI_BAND_HEIGHT*2;
}
ul_band_size = band_width_bytes * band_height;
ibp = (byte *)gs_malloc(pdev->memory->non_gc_memory, ul_band_size, 1, "gdi_print_page");
obp = (byte *)gs_malloc(pdev->memory->non_gc_memory, ul_band_size*13/10, 1, "gdi_print_page");
tmp = (byte *)gs_malloc(pdev->memory->non_gc_memory, raster, 1, "gdi_print_page");
if (!ibp) return_error(gs_error_VMerror);
if (!obp) return_error(gs_error_VMerror);
if (!tmp) return_error(gs_error_VMerror);
if (ibp ==0 || obp == 0) return_error(gs_error_VMerror);
/* Header Output */
prn_stream = WritePJLHeaderData(pdev, prn_stream);
num_rows = dev_print_scan_lines(pdev);
band_num = (num_rows + band_height -1)/band_height;
if (raster > band_width_bytes)
real_line_width = band_width_bytes;
else
real_line_width = raster;
/* Real Data Output */
y = 0;
for (i=0; i< band_num; i++) {
memset(ibp, 0x00, ul_band_size);
memset(obp, 0x00, ul_band_size*13/10);
for (j=0; j<band_height; j++) {
memset(tmp, 0x00, raster);
/*code = gdev_prn_copy_scan_lines(pdev, i*band_height+j, */
if (y == num_rows) break;
code = gdev_prn_copy_scan_lines(pdev, y++,
(byte*)tmp, raster);
if (code < 0) break;
memcpy(ibp+j*band_width_bytes, tmp, real_line_width);
}
if ( i>= GDI_MAX_BAND) continue;
/* Write Band Data
Because of Scanline compression, extract Scanline compression mode */
/*ul_tiff_size = FrameTiffComp(obp, ibp, band_height, band_width_bytes, GDI_PRE_COMP);*/
/*ul_scan_size = (unsigned long)bmp2run(obp, ibp, band_height, band_width_bytes, GDI_PRE_COMP);*/
/*ul_min_size = (ul_scan_size > ul_tiff_size) ? ul_tiff_size : ul_scan_size;*/
/* ul_min_size = ul_tiff_size; */
compression_type = GDI_COMP_MODITIFF;
/*compression_type = (ul_scan_size > ul_tiff_size) ? GDI_COMP_MODITIFF : GDI_COMP_SCANLINE;*/
switch (compression_type) {
case GDI_COMP_MODITIFF:
#define FUDGE_BIG_BANDS
#ifndef FUDGE_BIG_BANDS
ul_comp_size = FrameTiffComp(obp, ibp, band_height, band_width_bytes, GDI_REAL_COMP);
#else
{
/* Very ugly. The printer will hose if the compressed
band size is over 65536, so we "fudge" the data in
this case repeatedly until we get what we want.
The fudge algorithm is simple, this is kinda-sorta
RLE, so we just round groups of bits in groups of
2, then 3, then 4, etc until the thing works. */
#define MAXBAND 0xffff
#define ASSERT(x)
int fudge=0;
byte *use_band=ibp;
do {
ul_comp_size = FrameTiffComp(obp, use_band,
band_height, band_width_bytes,
GDI_REAL_COMP);
if (ul_comp_size > MAXBAND-8) {
int f;
if (!fudge) {
ASSERT(use_band == ibp);
use_band = (byte*)gs_malloc(pdev->memory->non_gc_memory, ul_band_size, 1, "gdi_print_page/fudge");
fudge=1;
}
memcpy(use_band, ibp, ul_band_size);
fudge++;
ASSERT(fudge>=2);
{
#define FUDGE2(x) ( (((((x)>>6)&0x3)?3:0)<<6) \
| (((((x)>>4)&0x3)?3:0)<<4) \
| (((((x)>>2)&0x3)?3:0)<<2) \
| (((((x)>>0)&0x3)?3:0)) )
#define FUDGE4(x) ( (((((x)>>4)&0xf)?0xf:0)<<4) \
| (((((x)>>0)&0xf)?0xf:0)) )
#define FUDGE8(x) ( (((((x)>>0)&0xff)?0xf:0)) )
#define FUDGE(fudge, x) ( (fudge == 2 ? FUDGE2(x) \
: fudge == 3 ? FUDGE4(x) \
: fudge == 4 ? FUDGE8(x) \
: 0 ) )
for(f=0;f<ul_band_size; f++) {
use_band[f] = FUDGE(fudge, ibp[f]);
}
}
}
} while (ul_comp_size > MAXBAND-8);
if (fudge > 1) {
ASSERT(use_band != ibp);
gs_free(pdev->memory->non_gc_memory, use_band, ul_band_size, 1, "gdi_print_page/fudge");
/*dprintf2("smartgdi: band %d fudge factor is %d\n", i, fudge);*/
}
}
#endif
break;
case GDI_COMP_SCANLINE:
ul_comp_size = bmp2run(obp, ibp, band_height, band_width_bytes, GDI_REAL_COMP);
break;
default:
ul_comp_size = FrameTiffComp(obp, ibp, band_height, band_width_bytes, GDI_REAL_COMP);
compression_type = GDI_COMP_MODITIFF;
break;
}
prn_stream = WriteBandHeader(prn_stream, i, compression_type, (band_width_bytes * 8),
band_height, ul_comp_size);
/*dprintf2(prn_stream, "[%d] band, size : %d\n", i, ul_tiff_size);*/
gp_fwrite(obp, ul_comp_size, 1, prn_stream);
}
/* Trailer Output */
WriteTrailerData(prn_stream);
gs_free(pdev->memory->non_gc_memory, ibp, ul_band_size, 1, "gdi_line_buffer");
gs_free(pdev->memory->non_gc_memory, obp, ul_band_size*13/10, 1, "gdi_line_buffer");
gs_free(pdev->memory->non_gc_memory, tmp, raster, 1, "gdi_line_buffer");
return code;
}
gp_file *WritePJLHeaderData(gx_device_printer *pdev, gp_file *fp)
{
unsigned long ulSize;
char buffer[300];
int dots_per_inch = (int)pdev->y_pixels_per_inch;
strcpy(buffer, "\033%-12345X");
/* Paper Type*/
strcat(buffer, "@PJL SET PAPERTYPE = NORMAL ON\015\012");
/*Density*/
strcat(buffer, "@PJL SET DENSITY = 1\015\012");
/* Toner Save*/
strcat(buffer, "@PJL SET TONERSAVE = OFF\015\012");
/* Enter Language SMART*/
strcat(buffer, "@PJL ENTER LANGUAGE = SMART\015\012");
/* JobStart*/
strcat(buffer, "$PJL JOB START\015\012");
/* Resolution*/
if (dots_per_inch == 600)
strcat(buffer, "$PJL RESOLUTION = 600\015\012");
else
strcat(buffer, "$PJL RESOLUTION = 300\015\012");
/* Copies*/
strcat(buffer, "$PJL COPIES = 1\015\012");
/* Paper Size*/
switch (gdev_pcl_paper_size((gx_device*)pdev))
{
case PAPER_SIZE_A4:
strcat(buffer, "$PJL PAGE A4 AUTO\015\012");
break;
case PAPER_SIZE_LETTER:
strcat(buffer, "$PJL PAGE LETTER AUTO\015\012");
break;
case PAPER_SIZE_LEGAL:
strcat(buffer, "$PJL PAGE LEGAL AUTO\015\012");
break;
default:
strcat(buffer, "$PJL PAGE LETTER AUTO\015\012");
break;
}
/* bitmap start*/
strcat(buffer, "$PJL BITMAP START\015\012");
/* write buffer to file.*/
ulSize = strlen(buffer);
gp_fwrite(buffer, 1, ulSize, fp );
return(fp);
} /* WritePJLHeaderData() */
gp_file *WriteBandHeader
(
gp_file *fp,
unsigned int usBandNo,
unsigned char ubCompMode,
unsigned int usBandWidth,
unsigned int usBandHeight,
unsigned long ulBandSize
)
{
unsigned char ubLeft=0;
unsigned int i = 0;
unsigned char buf[50];
memset(buf, 0x00, 50);
ulBandSize += 8;
/* bandsize*/
buf[i++] = (unsigned char)((ulBandSize >> 24) & 0xff);
buf[i++] = (unsigned char)((ulBandSize >> 16) & 0xff);
buf[i++] = (unsigned char)((ulBandSize >> 8) & 0xff);
buf[i++] = (unsigned char)(ulBandSize & 0xff);
/* id */
buf[i++] = (unsigned char)((usBandNo >> 8) & 0xff);
buf[i++] = (unsigned char)(usBandNo & 0xff);
/* compress mode */
buf[i++] = (unsigned char)(ubCompMode & 0xff);
/* ubLeft */
buf[i++] = (unsigned char)(ubLeft & 0xff);
/* height*/
buf[i++] = (unsigned char)((usBandHeight >> 8) & 0xff);
buf[i++] = (unsigned char)(usBandHeight & 0xff);
/* width */
buf[i++] = (unsigned char)((usBandWidth >> 8) & 0xff);
buf[i++] = (unsigned char)(usBandWidth & 0xff);
gp_fwrite(buf, 1, i, fp);
return(fp);
} /* end of WriteBandHeader()*/
gp_file *WriteTrailerData(gp_file *fp)
{
unsigned long ulSize;
unsigned long buffer[200];
memset((char*)buffer, 0x00, 200);
strcpy((char*)buffer, "$PJL PRINT 4\015\012");
strcat((char*)buffer, "$PJL EOJ\015\012");
strcat((char*)buffer, "$PJL SYNC\015\012");
strcat((char*)buffer, "$PJL RELEASE 0 2047\015\012");
strcat((char*)buffer, "$PJL GARBAGE\015\012");
strcat((char*)buffer, "\033%-12345X\015\012");
ulSize = strlen((char*)buffer);
gp_fwrite(buffer, 1, ulSize, fp);
return(fp);
} /* WriteTrailerData()*/
unsigned long FrameTiffComp(unsigned char *pubDest,
unsigned char *pubSrc,
unsigned int usTotalLines,
unsigned int usBytesPerLine,
unsigned char ubMode)
{
unsigned char *TgtPtr, *SrcPtr;
unsigned int usLineSize;
unsigned long ulret;
unsigned int i;
SrcPtr = pubSrc;
TgtPtr = pubDest;
ulret = 0;
for (i = 0; i < usTotalLines; i++)
{
if (!(ubMode & 0x02))
{
usLineSize = FrameTiff_Comp(SrcPtr, TgtPtr, usBytesPerLine);
}
else
{
usLineSize = PreTiffComp(SrcPtr, usBytesPerLine);
}
SrcPtr += usBytesPerLine;
TgtPtr += usLineSize;
ulret += usLineSize;
}
if (!(ubMode & 0x02))
{
switch (ulret%4)
{
case 1:
*TgtPtr++ = 0x00;
ulret++;
/* Fall through. */
case 2:
*TgtPtr++ = 0x00;
ulret++;
/* Fall through. */
case 3:
*TgtPtr++ = 0x00;
ulret++;
/* Fall through. */
default:
break;
}
}
else
{
switch (ulret%4)
{
case 1:
ulret++;
/* Fall through. */
case 2:
ulret++;
/* Fall through. */
case 3:
ulret++;
/* Fall through. */
default:
break;
}
}
return(ulret);
} /* FrameTiffComp()*/
unsigned int FrameTiff_Comp(unsigned char *lpSrcBuf, unsigned char *lpTgtBuf, unsigned int nSrcBytes)
{
unsigned int usret;
unsigned int usCount, usEndCnt;
unsigned int usControl;
unsigned int usCnt;
unsigned char ubFirst, ubSecond, ubMisCnt;
unsigned char *pubDst, *pubSrc, *pubOrg;
pubDst = lpTgtBuf;
pubSrc = lpSrcBuf;
usCount = nSrcBytes;
while(1)
{
if(!usCount)
{
break; /* exit while(1) loop */
}
else if (usCount == 1)
{
*pubDst++ = 0x00;
*pubDst++ = *pubSrc++;
break;
}
pubOrg = pubSrc;
ubFirst = *pubSrc++;
ubSecond = *pubSrc++;
if(ubFirst == ubSecond) /* case of data match */
{
#if 0
/* This code causes coverity problems, and has no affect. */
usEndCnt = usCount;
if (usCount > 16384)
{
usEndCnt = 16384;
}
#endif
usEndCnt = usCount - 2;
while (usEndCnt--)
{
if (ubFirst != *pubSrc++)
{
pubSrc--;
break;
}
} /* of while */
/* Save compressed data */
usCnt = (unsigned int) (pubSrc - pubOrg);
usCount -= usCnt;
usCnt -=2;
if (usCnt >= 64)
{
/* save control code code 1100 0000 0000 0000 | usCnt */
usCnt = (~usCnt & 0x3fff) | 0xc000;
*pubDst++ = (unsigned char)((usCnt & 0xff00) >> 8);
*pubDst++ = (unsigned char)(usCnt & 0x00ff);
*pubDst++ = ubFirst;
}
else
{
/* save control code 0100 0000 | (unsigned char)(usCnt) */
usCnt = (~usCnt & 0x7f);
*pubDst++ = (unsigned char)usCnt;
*pubDst++ = ubFirst;
}
} /* of if (ubFirst == ubSecond) */
else /* case of data mismatch */
{
ubMisCnt = 0;
if (usCount > 2)
{
#if 0
/* This code causes coverity problems, and has no affect. */
usEndCnt = usCount;
if (usCount > 16384)
{
usEndCnt = 16384;
}
#endif
usEndCnt = usCount - 2;
/* usEndCnt = usCount - 2; original*/
/* 19990824 by LSM : for end file while (usEndCnt--)*/
while (usEndCnt--)
{
/* read next data */
ubFirst = ubSecond;
ubSecond = *pubSrc++; /* read 3rd Data*/
if (ubFirst == ubSecond)
{
if (usEndCnt <= 1)
{
ubMisCnt = 2;
break;
}
else
{
ubSecond = *pubSrc++; /* read 4th Data*/
usEndCnt--;
if (ubFirst == ubSecond)
{
ubMisCnt = 3;
break;
}
}
}
} /* of while */
} /* of if (usCount > 2) */
/* save data */
usControl = (unsigned int) (pubSrc - pubOrg);
usControl -= (unsigned int) ubMisCnt;
if (usControl > usCount)
{
usCount = usControl;
}
usCount -= usControl;
usCnt = usControl - 1;
if ( usCnt >= 64)
{
/* save control code 1000 0000 0000 0000 | usCnt */
usCnt = ((usCnt & 0xbfff) | 0x8000);
*pubDst++ = (unsigned char)((usCnt & 0xff00) >> 8);
*pubDst++ = (unsigned char)(usCnt & 0x00ff);
}
else
{
/* save control code 0000 0000 | (BYTE)usCnt */
/* and invert it */
*pubDst++ = (unsigned char)(usCnt & 0x003f);
}
pubSrc = pubOrg;
while (usControl--)
{
*pubDst++ = *pubSrc++;
} /* of while */
} /* of else */
} /* of while(1) */
usret = (unsigned int) (pubDst - lpTgtBuf);
return (usret);
}
unsigned int PreTiffComp(unsigned char *lpSrcBuf, unsigned int nSrcBytes)
{
unsigned int usret =0;
unsigned int usCount, usEndCnt;
unsigned int usControl;
unsigned int usCnt;
unsigned char ubFirst, ubSecond, ubMisCnt;
unsigned char *pubSrc, *pubOrg;
pubSrc = lpSrcBuf;
usCount = nSrcBytes;
while(1)
{
if(!usCount)
{
break; /* exit while(1) loop */
}
else if (usCount == 1)
{
usret +=2;
pubSrc++;
break;
}
pubOrg = pubSrc;
ubFirst = *pubSrc++;
ubSecond = *pubSrc++;
if(ubFirst == ubSecond) /* case of data match */
{
#if 0
/* This code causes coverity problems, and has no affect. */
usEndCnt = usCount;
if (usCount > 16384)
{
usEndCnt = 16384;
}
#endif
usEndCnt = usCount - 2;
while (usEndCnt--)
{
if (ubFirst != *pubSrc++)
{
pubSrc--;
break;
}
} /* of while */
/* Save compressed data */
usCnt = (unsigned int) (pubSrc - pubOrg);
usCount -= usCnt;
usCnt -=2;
if (usCnt >= 64)
{
/* save control code code 1100 0000 0000 0000 | usCnt */
usret +=3;
}
else
{
/* save control code 0100 0000 | (unsigned char)(usCnt) */
usret += 2;
}
} /* of if (ubFirst == ubSecond) */
else /* case of data mismatch */
{
ubMisCnt = 0;
if (usCount > 2)
{
#if 0
/* This code causes coverity problems, and has no affect. */
usEndCnt = usCount;
if (usCount > 16384)
{
usEndCnt = 16384;
}
/* usEndCnt = usCount - 2;*/
#endif
usEndCnt = usCount - 2;
/* 19990824 by LSM : for Last file while (usEndCnt--)*/
while (usEndCnt--)
{
/* read next data */
ubFirst = ubSecond;
ubSecond = *pubSrc++; /* read 3rd Data*/
if (ubFirst == ubSecond)
{
if (usEndCnt <= 1)
{
ubMisCnt = 2;
break;
}
else
{
ubSecond = *pubSrc++; /* read 4th Data*/
usEndCnt--; /* 19990824 by LSM*/
if (ubFirst == ubSecond)
{
ubMisCnt = 3;
break;
}
}
}
} /* of while */
} /* of if (usCount > 2) */
/* save data */
usControl = (unsigned int) (pubSrc - pubOrg);
usControl -= ubMisCnt;
/* 19990824 by LSM : for fixing GPF on Photoshop*/
if (usControl > usCount)
{
usControl = usCount;
}
usCount -= usControl;
usCnt = usControl - 1;
if ( usCnt >= 64)
{
/* save control code 1000 0000 0000 0000 | usCnt */
usret += 2;
}
else
{
/* save control code 0000 0000 | (BYTE)usCnt */
/* and invert it */
usret++;
}
pubSrc = pubOrg;
while (usControl--)
{
usret++;
pubSrc++;
} /* of while */
} /* of else */
} /* of while(1) */
return (usret);
}
typedef struct
{
unsigned char ubDx;
unsigned char ubRl;
unsigned char ubLastBit;
} sc_tbl;
static sc_tbl gdi_ScanTbl[256] = {
{ 8, 0, 0 }, { 7, 1, 1 }, { 6, 1, 0 }, { 6, 2, 1 }, /* 0x00*/
{ 5, 1, 0 }, { 0, 0, 1 }, { 5, 2, 0 }, { 5, 3, 1 },
{ 4, 1, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 4, 2, 0 }, { 0, 0, 1 }, { 4, 3, 0 }, { 4, 4, 1 },
{ 3, 1, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0x10*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 3, 2, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 3, 3, 0 }, { 0, 0, 1 }, { 3, 4, 0 }, { 3, 5, 1 },
{ 2, 1, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0x20*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 2, 2, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0x30*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 2, 3, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 2, 4, 0 }, { 0, 0, 1 }, { 2, 5, 0 }, { 2, 6, 1 },
{ 1, 1, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0x40*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0x50*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 1, 2, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0x60*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 1, 3, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0x70*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 1, 4, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 1, 5, 0 }, { 0, 0, 1 }, { 1, 6, 0 }, { 1, 7, 1 },
{ 0, 1, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0x80*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0x90*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0xa0*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0xb0*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 2, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0xc0*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0xd0*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 3, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0xe0*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 4, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0xf0*/
{ 0, 0, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 5, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 },
{ 0, 6, 0 }, { 0, 0, 1 }, { 0, 7, 0 }, { 0, 8, 1 },
};
static sc_tbl gdi_ScanTbl4[16] = {
{ 4, 0, 0 }, { 3, 1, 1 }, { 2, 1, 0 }, { 2, 2, 1 }, /* 0x00*/
{ 1, 1, 0 }, { 0, 0, 1 }, { 1, 2, 0 }, { 1, 3, 1 }, /* 0x04*/
{ 0, 1, 0 }, { 0, 0, 1 }, { 0, 0, 0 }, { 0, 0, 1 }, /* 0x08*/
{ 0, 2, 0 }, { 0, 0, 1 }, { 0, 3, 0 }, { 0, 4, 1 } /* 0x0c*/
};
long SaveScanData( unsigned char *, unsigned short, unsigned short, unsigned short, unsigned short, unsigned short );
long UpdateScanSize( unsigned char *, unsigned short, unsigned short, unsigned short, unsigned short, unsigned short );
typedef long (*funcptr)( unsigned char *, unsigned short, unsigned short, unsigned short, unsigned short, unsigned short );
funcptr UpdateScanLine[2] = { SaveScanData, UpdateScanSize };
static long Save6Bytes(unsigned char *out_buf, unsigned short usDy, unsigned short usRl, short sDx, unsigned short usWarp)
{
unsigned long ultmp_dat;
long lWarp, lDis;
unsigned short ustmp_dat;
lWarp = (long)(usWarp << 3);
lDis = ((long)usDy * lWarp) + (long)sDx;
/* 1st, 2nd, 3rd & 4th byte*/
ultmp_dat = 0xc0000000ul;
if (lDis < 0)
{
ultmp_dat |= 0x20000000ul;
}
ultmp_dat |= (lDis & 0x1ffffffful);
*out_buf++ = (unsigned char)((ultmp_dat & 0xff000000ul) >> 24);
*out_buf++ = (unsigned char)((ultmp_dat & 0xff0000ul) >> 16);
*out_buf++ = (unsigned char)((ultmp_dat & 0xff00ul) >> 8);
*out_buf++ = (unsigned char)(ultmp_dat & 0xfful);
/* 5th & 6th byte*/
ustmp_dat = 0xc000;
ustmp_dat |= (usRl & 0x3fff);
*out_buf++ = (unsigned char)((ustmp_dat & 0xff00) >> 8);
*out_buf++ = (unsigned char)(ustmp_dat & 0xff);
return(6);
} /* Save6Bytes()*/
static long Save4Bytes(unsigned char *out_buf, unsigned short usDy, unsigned short usRl, short sDx)
{
unsigned short ustmp_dat;
/* 1st & 2nd byte*/
ustmp_dat = 0x8000;
if (sDx < 0)
{
ustmp_dat |= 0x2000;
}
ustmp_dat |= (sDx & 0x1fff);
*out_buf++ = (unsigned char)((ustmp_dat & 0xff00) >> 8);
*out_buf++ = (unsigned char)(ustmp_dat & 0xff);
/* 3rd & 4th byte*/
ustmp_dat = 0x8000;
ustmp_dat |= ((usDy & 0x03) << 12);
ustmp_dat |= (usRl & 0xfff);
*out_buf++ = (unsigned char)((ustmp_dat & 0xff00) >> 8);
*out_buf++ = (unsigned char)(ustmp_dat & 0xff);
return(4);
} /* end of Save4Bytes()*/
static long Save2Bytes(unsigned char *out_buf, unsigned short usDy, unsigned short usRl, short sDx)
{
unsigned char ubtmp_dat;
/* 1st byte*/
ubtmp_dat = 0x00;
if (usDy == 1)
{
ubtmp_dat |= 0x40;
}
ubtmp_dat |= (usRl & 0x3f);
*out_buf++ = ubtmp_dat;
/* 2nd byte*/
if (sDx < 0)
{
ubtmp_dat = 0x80;
}
else
{
ubtmp_dat = 0x00;
}
ubtmp_dat |= ((unsigned char)sDx & 0x7f);
*out_buf++ = ubtmp_dat;
return(2);
} /* end of Save2Bytes()*/
long SaveScanData (unsigned char *out_buf,
unsigned short us1Cnt,
unsigned short usDy,
unsigned short usPosX10,
unsigned short usPosX01,
unsigned short usWarp)
{
short sDisX;
long lRet;
sDisX = (int)usPosX01 - (int)usPosX10;
/* 48 bit*/
if ( (usDy > 3) || (us1Cnt > 4095) )
{
Save6Bytes(out_buf, usDy, us1Cnt, sDisX, usWarp);
lRet = 6;
}
/* 32 bit*/
else if ( (usDy > 1) || (us1Cnt > 63) || (sDisX > 127) || (sDisX < -128) )
{
Save4Bytes(out_buf, usDy, us1Cnt, sDisX);
lRet = 4;
}
/* 16 bit*/
else
{
Save2Bytes(out_buf, usDy, us1Cnt, sDisX);
lRet = 2;
}
return(lRet);
} /* end of SaveScanData()*/
long UpdateScanSize (unsigned char *out_buf,
unsigned short us1Cnt,
unsigned short usDy,
unsigned short usPosX10,
unsigned short usPosX01,
unsigned short usWarp)
{
short sDisX;
long lRet;
sDisX = usPosX01 - usPosX10;
/* 48 bit*/
if ( (usDy > 3) || (us1Cnt > 4095) )
{
lRet = 6;
}
/* 32 bit*/
else if ( (usDy > 1) || (us1Cnt > 63) || (sDisX > 127) || (sDisX < -128) )
{
lRet = 4;
}
/* 16 bit*/
else
{
lRet = 2;
}
return(lRet);
} /* end of UpdateScanSize() by bglee 19981224*/
static long GetSimpleScan(unsigned char *out_buf,
unsigned char ubSizeMode,
unsigned short *us1Count,
unsigned short *usDy,
unsigned short *usPosX10,
unsigned short *usPosX01,
unsigned short usBytePos,
unsigned char ubCrtByte,
unsigned char ubSize,
unsigned char ubPreBit,
unsigned short usWidth)
{
long lScanSize;
unsigned char ubDx, ubRl, ubLastBit;
lScanSize = 0;
if (ubSize == 8)
{
ubDx = gdi_ScanTbl[ubCrtByte].ubDx;
ubRl = gdi_ScanTbl[ubCrtByte].ubRl;
ubLastBit = gdi_ScanTbl[ubCrtByte].ubLastBit;
}
else
{
ubCrtByte &= 0x0f;
ubDx = gdi_ScanTbl4[ubCrtByte].ubDx;
ubRl = gdi_ScanTbl4[ubCrtByte].ubRl;
ubLastBit = gdi_ScanTbl4[ubCrtByte].ubLastBit;
}
/* 1 X 1 X*/
if (ubPreBit)
{
/* 1 0 1 X*/
if (ubDx)
{
lScanSize += (*UpdateScanLine[ubSizeMode])(out_buf, *us1Count, *usDy, *usPosX10, *usPosX01, usWidth);
*usPosX10 = usBytePos - *us1Count;
*usPosX01 = usBytePos + ubDx;
*us1Count = ubRl;
*usDy = 0;
/* 1 0 1 0*/
if (!ubLastBit)
{
/* 19990330 by bglee*/
out_buf = out_buf + lScanSize;
lScanSize += (*UpdateScanLine[ubSizeMode])(out_buf, *us1Count, *usDy, *usPosX10, *usPosX01, usWidth);
*usPosX10 = *usPosX01 ;
*us1Count = 0;
}
/* 1 0 1 1*/
}
/* 1 1 1 X*/
else
{
*us1Count += ubRl;
/* 1 1 1 0*/
if (!ubLastBit)
{
lScanSize += (*UpdateScanLine[ubSizeMode])(out_buf, *us1Count, *usDy, *usPosX10, *usPosX01, usWidth);
*usPosX10 = usBytePos + ubRl - *us1Count;
*us1Count = 0;
*usDy = 0;
}
/* 1 1 1 1*/
}
}
/* 0 X 1 X*/
else
{
/* 0 X 1 X*/
*usPosX01 = usBytePos + ubDx;
*us1Count += ubRl;
/* 0 X 1 0*/
if (!ubLastBit)
{
lScanSize += (*UpdateScanLine[ubSizeMode])(out_buf, *us1Count, *usDy, *usPosX10, *usPosX01, usWidth);
*usPosX10 = *usPosX01 + ubRl - *us1Count;
*us1Count = 0;
*usDy = 0;
}
/* 0 X 1 1*/
}
return(lScanSize);
} /* end of GetSimpleScan() */
static long scan_map (unsigned char *in_buf,
unsigned char *out_buf,
unsigned short usWidth,
unsigned short usHeight,
unsigned char ubMode)
{
unsigned int i, j, k;
unsigned char ubPreBit, ubCrtByte;/*, ubLastBit;*/
long lScanSize, lTmp;
long lCrtSize;
unsigned short us1Count;
unsigned short usPosX01, usPosX10;
unsigned short usDy, usBytePos;
unsigned char ubRevMode, ubSizeMode;
unsigned char ubTemp;
usDy = 0;
usPosX01 = usPosX10 = 0;
lScanSize = 0;
ubRevMode = ubMode & 0x01;
ubSizeMode = (ubMode & 0x02) >> 1;
for (i = 0; i < usHeight; i++)
{
ubPreBit = 0;
us1Count = 0;
for (j = 0; j < usWidth; j++)
{
ubCrtByte = *in_buf++;
if (ubRevMode)
{
ubCrtByte = ~ubCrtByte;
}
switch (ubCrtByte)
{
case 0x00:
/* 1 0 */
if (ubPreBit)
{
lTmp = (*UpdateScanLine[ubSizeMode])(out_buf, us1Count, usDy, usPosX10, usPosX01, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
usPosX10 = (j << 3) - us1Count; /*by pkb*/
us1Count = 0;
usDy = 0;
}
/* 0 0*/
break;
case 0xff:
/* 1 1*/
if (ubPreBit)
{
us1Count += 8;
}
/* 0 1*/
else
{
us1Count = 8;
usPosX01 = (j << 3);
}
break;
default:
/* X X 1 X*/
if (gdi_ScanTbl[ubCrtByte].ubRl)
{
usBytePos = (j << 3);
lTmp = GetSimpleScan(out_buf, ubSizeMode, &us1Count, &usDy, &usPosX10, &usPosX01, usBytePos, ubCrtByte, 8, ubPreBit, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
}
/* complex pattern*/
else
{
for (k = 0; k < 2; k++)
{ /*we calculate 4bit*/
ubTemp = (ubCrtByte >> (4 - (k * 4)) ) & 0x0f;
usBytePos = (j << 3) + (k << 2);
switch (ubTemp)
{
case 0x00:
/* 1 0*/
if (ubPreBit)
{
lTmp = (*UpdateScanLine[ubSizeMode])(out_buf, us1Count, usDy, usPosX10, usPosX01, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
usPosX10 = usBytePos - us1Count;
us1Count = 0;
usDy = 0;
}
/* 0 0*/
break;
case 0x0f:
/* 1 1*/
if (ubPreBit)
{
us1Count += 4;
}
/* 0 1*/
else
{
us1Count = 4;
usPosX01 = (j << 3) + (k << 2);
}
break;
case 0x05:
/* 1 0101*/
if (ubPreBit)
{
lTmp = (*UpdateScanLine[ubSizeMode])(out_buf, us1Count, usDy, usPosX10, usPosX01, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
usPosX10 = usBytePos - us1Count;
usDy = 0;
}
/* 0 0101*/
usPosX01 = usBytePos + 1;
lTmp = (*UpdateScanLine[ubSizeMode])(out_buf, 1, usDy, usPosX10, usPosX01, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
/* next*/
usPosX10 = 0;
usPosX01 = 2;
usDy = 0;
us1Count = 1;
break;
case 0x09:
/* 1 1001*/
if (ubPreBit)
{
us1Count++;
}
/* 0 1001*/
else
{
usPosX01 = usBytePos;
us1Count = 1;
}
lTmp = (*UpdateScanLine[ubSizeMode])(out_buf, us1Count, usDy, usPosX10, usPosX01, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
/* next*/
if (ubPreBit)
{
usPosX10 = usBytePos - us1Count + 1;
usPosX01 = usBytePos + 3;
}
else
{
usPosX10 = 0;
usPosX01 = 3;
}
usDy = 0;
us1Count = 1;
break;
case 0x0a:
/* 1 1010*/
if (ubPreBit)
{
us1Count++;
}
/* 0 1010*/
else
{
us1Count = 1;
usPosX01 = usBytePos;
}
lTmp = (*UpdateScanLine[ubSizeMode])(out_buf, us1Count, usDy, usPosX10, usPosX01, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
/* next*/
usPosX10 = usBytePos - us1Count + 1;
usPosX01 = usBytePos + 2;
lTmp = (*UpdateScanLine[ubSizeMode])(out_buf, 1, 0, usPosX10, usPosX01, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
/* next*/
usPosX10 = usBytePos + 2;
usDy = 0;
us1Count = 0;
break;
case 0x0b:
/* 1 1011*/
if (ubPreBit)
{
us1Count++;
}
/* 0 1011*/
else
{
us1Count = 1;
usPosX01 = usBytePos;
}
lTmp = (*UpdateScanLine[ubSizeMode])(out_buf, us1Count, usDy, usPosX10, usPosX01, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
/* next*/
if (ubPreBit)
{
usPosX10 = usBytePos - us1Count + 1;
usPosX01 = usBytePos + 2;
}
else
{
usPosX10 = 0;
usPosX01 = 2;
}
usDy = 0;
us1Count = 2;
break;
case 0x0d:
/* 1 1101*/
if (ubPreBit)
{
us1Count += 2;
}
/* 0 1101*/
else
{
us1Count = 2;
usPosX01 = usBytePos;
}
lTmp = (*UpdateScanLine[ubSizeMode])(out_buf, us1Count, usDy, usPosX10, usPosX01, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
/* next*/
if (ubPreBit)
{
usPosX10 = usBytePos - us1Count + 2;
usPosX01 = usBytePos + 3;
}
else
{
usPosX10 = 0;
usPosX01 = 3;
}
usDy = 0;
us1Count = 1;
break;
default:
/* X X 1 X*/
lTmp = GetSimpleScan(out_buf, ubSizeMode, &us1Count, &usDy, &usPosX10, &usPosX01, usBytePos, ubTemp, 4, ubPreBit, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
break;
} /* end of switch()*/
ubPreBit = ubTemp & 0x01;
} /* end of k-loop*/
}
break;
} /* end of switch()*/
ubPreBit = ubCrtByte & 0x01;
} /*for usWidth */
if (us1Count)
{
lTmp = (*UpdateScanLine[ubSizeMode])(out_buf, us1Count, usDy, usPosX10, usPosX01, usWidth);
out_buf = out_buf + lTmp;
lScanSize += lTmp;
usPosX10 = (j << 3) - us1Count;
us1Count = 0;
usDy = 0;
usPosX01 = 0;
}
usDy++;
/* check size over*/
if ( (i % 5) == 4 )
{
lCrtSize = (long)((long)usWidth * (long)(i + 1));
if ( lScanSize >= lCrtSize )
{
return(-1);
}
}
} /* for usHeight */
lCrtSize = (long)((long)usWidth * (long)usHeight);
if ( (lScanSize + 4) >= lCrtSize )
{
lScanSize = -1;
}
return(lScanSize);
} /* end of scan_map() */
/*****************************************************************
* H : bmp2run
* I : unsigned char *in_buf - input buffer pointer
* unsigned char *out_buf - output buffer pointer
* unsigned int sizeX - image width by byte
* unsigned int sizeY - image height by scanline
* unsigned char ubMode - bit 0 & 1
* 0 0 - normal compression
* 0 1 - image reverse
* 1 X - you get scanline table size
* O : unsigned long lScanSize - scanline table size
* P : scanline table compression
****************************************************************/
long bmp2run(unsigned char *out_buf, unsigned char *in_buf, unsigned int sizeY, unsigned int sizeX, unsigned char ubMode)
{
unsigned char *tmp_buf1, *tmp_buf2;
long scan_size;
/*return(-1);*/ /* 19990323 by bglee - request from SM Lee*/
tmp_buf1 = in_buf;
tmp_buf2 = out_buf;
scan_size = scan_map(tmp_buf1, tmp_buf2, sizeX, sizeY, ubMode);
if (scan_size == -1)
{
return(-1);
}
if ( !(ubMode & 0x02) ) /* real compression */
{
out_buf = tmp_buf2 + scan_size;
*out_buf++ = 0x00;
*out_buf++ = 0x00;
scan_size += 2;
if (scan_size % 4)
{
*out_buf++ = 0x00;
*out_buf++ = 0x00;
scan_size += 2;
}
}
else /* pre-compression*/
{
scan_size += 2;
if (scan_size % 4)
{
scan_size += 2;
}
}
return(scan_size);
}
|