Added netapi32.dll and the Netbios() call.
[wine] / dlls / wineps / ps.c
1 /*
2  *      PostScript output functions
3  *
4  *      Copyright 1998  Huw D M Davies
5  *
6  */
7
8 #include <ctype.h>
9 #include <stdio.h>
10 #include <string.h>
11 #include "psdrv.h"
12 #include "winspool.h"
13 #include "debugtools.h"
14
15 DEFAULT_DEBUG_CHANNEL(psdrv);
16
17 static char psheader[] = /* title llx lly urx ury orientation */
18 "%%!PS-Adobe-3.0\n"
19 "%%%%Creator: Wine PostScript Driver\n"
20 "%%%%Title: %s\n"
21 "%%%%BoundingBox: %d %d %d %d\n"
22 "%%%%Pages: (atend)\n"
23 "%%%%Orientation: %s\n"
24 "%%%%EndComments\n";
25
26 static char psbeginprolog[] = 
27 "%%BeginProlog\n";
28
29 static char psendprolog[] =
30 "%%EndProlog\n";
31
32 static char psprolog[] =
33 "/tmpmtrx matrix def\n"
34 "/hatch {\n"
35 "  pathbbox\n"
36 "  /b exch def /r exch def /t exch def /l exch def /gap 32 def\n"
37 "  l cvi gap idiv gap mul\n"
38 "  gap\n"
39 "  r cvi gap idiv gap mul\n"
40 "  {t moveto 0 b t sub rlineto}\n"
41 "  for\n"
42 "} bind def\n";
43
44 static char psbeginsetup[] =
45 "%%BeginSetup\n";
46
47 static char psendsetup[] =
48 "%%EndSetup\n";
49
50 static char psbeginfeature[] = /* feature, value */
51 "mark {\n"
52 "%%%%BeginFeature: %s %s\n";
53
54 static char psendfeature[] =
55 "\n%%EndFeature\n"
56 "} stopped cleartomark\n";
57
58 static char psnewpage[] = /* name, number, xres, yres, xtrans, ytrans, rot */
59 "%%%%Page: %s %d\n"
60 "%%%%BeginPageSetup\n"
61 "/pgsave save def\n"
62 "72 %d div 72 %d div scale\n"
63 "%d %d translate\n"
64 "1 -1 scale\n"
65 "%d rotate\n"
66 "%%%%EndPageSetup\n";
67
68 static char psendpage[] =
69 "pgsave restore\n"
70 "showpage\n";
71
72 static char psfooter[] = /* pages */
73 "%%%%Trailer\n"
74 "%%%%Pages: %d\n"
75 "%%%%EOF\n";
76
77 static char psmoveto[] = /* x, y */
78 "%d %d moveto\n";
79
80 static char pslineto[] = /* x, y */
81 "%d %d lineto\n";
82
83 static char psstroke[] = 
84 "stroke\n";
85
86 static char psrectangle[] = /* x, y, width, height, -width */
87 "%d %d moveto\n"
88 "%d 0 rlineto\n"
89 "0 %d rlineto\n"
90 "%d 0 rlineto\n"
91 "closepath\n";
92
93 static char psrrectangle[] = /* x, y, width, height, -width */
94 "%d %d rmoveto\n"
95 "%d 0 rlineto\n"
96 "0 %d rlineto\n"
97 "%d 0 rlineto\n"
98 "closepath\n";
99
100 static const char psglyphshow[] = /* glyph name */
101 "/%s glyphshow\n";
102
103 static char pssetfont[] = /* fontname, xscale, yscale, ascent, escapement */
104 "/%s findfont\n"
105 "[%d 0 0 %d 0 0]\n"
106 "%d 10 div matrix rotate\n"
107 "matrix concatmatrix\n"
108 "makefont setfont\n";
109
110 static char pssetlinewidth[] = /* width */
111 "%d setlinewidth\n";
112
113 static char pssetdash[] = /* dash, offset */
114 "[%s] %d setdash\n";
115
116 static char pssetgray[] = /* gray */
117 "%.2f setgray\n";
118
119 static char pssetrgbcolor[] = /* r, g, b */
120 "%.2f %.2f %.2f setrgbcolor\n";
121
122 static char psarc[] = /* x, y, w, h, ang1, ang2 */
123 "tmpmtrx currentmatrix pop\n"
124 "%d %d translate\n"
125 "%d %d scale\n"
126 "0 0 0.5 %.1f %.1f arc\n"
127 "tmpmtrx setmatrix\n";
128
129 static char psgsave[] =
130 "gsave\n";
131
132 static char psgrestore[] =
133 "grestore\n";
134
135 static char psfill[] =
136 "fill\n";
137
138 static char pseofill[] =
139 "eofill\n";
140
141 static char psnewpath[] =
142 "newpath\n";
143
144 static char psclosepath[] =
145 "closepath\n";
146
147 static char psclip[] =
148 "clip\n";
149
150 static char psinitclip[] =
151 "initclip\n";
152
153 static char pseoclip[] =
154 "eoclip\n";
155
156 static char psrectclip[] =
157 "%d %d %d %d rectclip\n"; 
158
159 static char psrectclip2[] =
160 "%s rectclip\n"; 
161
162 static char pshatch[] =
163 "hatch\n";
164
165 static char psrotate[] = /* ang */
166 "%.1f rotate\n";
167
168 static char psarrayget[] = 
169 "%s %d get\n";
170
171 static char psarrayput[] = 
172 "%s %d %ld put\n";
173
174 static char psarraydef[] = 
175 "/%s %d array def\n";
176
177
178 int PSDRV_WriteSpool(DC *dc, LPSTR lpData, WORD cch)
179 {
180     PSDRV_PDEVICE *physDev = (PSDRV_PDEVICE *)dc->physDev;
181
182     if(physDev->job.OutOfPage) { /* Will get here after NEWFRAME Escape */
183         if( !PSDRV_StartPage(dc) )
184             return FALSE;
185     }
186     return WriteSpool16( physDev->job.hJob, lpData, cch );
187 }
188
189
190 INT PSDRV_WriteFeature(HANDLE16 hJob, char *feature, char *value,
191                          char *invocation)
192 {
193
194     char *buf = (char *)HeapAlloc( PSDRV_Heap, 0, sizeof(psbeginfeature) +
195                                    strlen(feature) + strlen(value));
196
197
198     sprintf(buf, psbeginfeature, feature, value);
199     WriteSpool16( hJob, buf, strlen(buf) );
200
201     WriteSpool16( hJob, invocation, strlen(invocation) );
202
203     WriteSpool16( hJob, psendfeature, strlen(psendfeature) );
204     
205     HeapFree( PSDRV_Heap, 0, buf );
206     return 1;
207 }
208
209
210
211 INT PSDRV_WriteHeader( DC *dc, LPCSTR title )
212 {
213     PSDRV_PDEVICE *physDev = (PSDRV_PDEVICE *)dc->physDev;
214     char *buf, *orient;
215     INPUTSLOT *slot;
216     PAGESIZE *page;
217     int llx, lly, urx, ury;
218
219     TRACE("'%s'\n", title);
220
221     buf = (char *)HeapAlloc( PSDRV_Heap, 0, sizeof(psheader) +
222                              strlen(title) + 30 );
223     if(!buf) {
224         WARN("HeapAlloc failed\n");
225         return 0;
226     }
227     
228     /* BBox co-ords are in default user co-ord system so urx < ury even in
229        landscape mode */
230     llx = physDev->PageSize.left * 72.0 / physDev->logPixelsX;
231     lly = physDev->PageSize.bottom * 72.0 / physDev->logPixelsY;
232     urx = physDev->PageSize.right * 72.0 / physDev->logPixelsX;
233     ury = physDev->PageSize.top * 72.0 / physDev->logPixelsY;
234
235     if(physDev->Devmode->dmPublic.u1.s1.dmOrientation == DMORIENT_LANDSCAPE) {
236         orient = "Landscape";
237     } else {
238         orient = "Portrait";
239     }
240
241     /* FIXME should do something better with BBox */
242
243     sprintf(buf, psheader, title, llx, lly, urx, ury, orient);          
244
245     if( WriteSpool16( physDev->job.hJob, buf, strlen(buf) ) != 
246                                                      strlen(buf) ) {
247         WARN("WriteSpool error\n");
248         HeapFree( PSDRV_Heap, 0, buf );
249         return 0;
250     }
251     HeapFree( PSDRV_Heap, 0, buf );
252
253     WriteSpool16( physDev->job.hJob, psbeginprolog, strlen(psbeginprolog) );
254     WriteSpool16( physDev->job.hJob, psprolog, strlen(psprolog) );
255     WriteSpool16( physDev->job.hJob, psendprolog, strlen(psendprolog) );
256
257     WriteSpool16( physDev->job.hJob, psbeginsetup, strlen(psbeginsetup) );
258
259     for(slot = physDev->pi->ppd->InputSlots; slot; slot = slot->next) {
260         if(slot->WinBin == physDev->Devmode->dmPublic.dmDefaultSource) {
261             if(slot->InvocationString) {
262                 PSDRV_WriteFeature(physDev->job.hJob, "*InputSlot", slot->Name,
263                              slot->InvocationString);
264                 break;
265             }
266         }
267     }
268
269     for(page = physDev->pi->ppd->PageSizes; page; page = page->next) {
270         if(page->WinPage == physDev->Devmode->dmPublic.u1.s1.dmPaperSize) {
271             if(page->InvocationString) {
272                 PSDRV_WriteFeature(physDev->job.hJob, "*PageSize", page->Name,
273                              page->InvocationString);
274                 break;
275             }
276         }
277     }
278
279     WriteSpool16( physDev->job.hJob, psendsetup, strlen(psendsetup) );
280
281
282     return 1;
283 }
284
285
286 INT PSDRV_WriteFooter( DC *dc )
287 {
288     PSDRV_PDEVICE *physDev = (PSDRV_PDEVICE *)dc->physDev;
289     char *buf;
290
291     buf = (char *)HeapAlloc( PSDRV_Heap, 0, sizeof(psfooter) + 100 );
292     if(!buf) {
293         WARN("HeapAlloc failed\n");
294         return 0;
295     }
296
297     sprintf(buf, psfooter, physDev->job.PageNo);
298
299     if( WriteSpool16( physDev->job.hJob, buf, strlen(buf) ) != 
300                                                      strlen(buf) ) {
301         WARN("WriteSpool error\n");
302         HeapFree( PSDRV_Heap, 0, buf );
303         return 0;
304     }
305     HeapFree( PSDRV_Heap, 0, buf );
306     return 1;
307 }
308
309
310
311 INT PSDRV_WriteEndPage( DC *dc )
312 {
313     PSDRV_PDEVICE *physDev = (PSDRV_PDEVICE *)dc->physDev;
314
315     if( WriteSpool16( physDev->job.hJob, psendpage, sizeof(psendpage)-1 ) != 
316                                                      sizeof(psendpage)-1 ) {
317         WARN("WriteSpool error\n");
318         return 0;
319     }
320     return 1;
321 }
322
323
324
325
326 INT PSDRV_WriteNewPage( DC *dc )
327 {
328     PSDRV_PDEVICE *physDev = (PSDRV_PDEVICE *)dc->physDev;
329     char *buf;
330     char name[100];
331     signed int xtrans, ytrans, rotation;
332
333     sprintf(name, "%d", physDev->job.PageNo);
334
335     buf = (char *)HeapAlloc( PSDRV_Heap, 0, sizeof(psnewpage) + 200 );
336     if(!buf) {
337         WARN("HeapAlloc failed\n");
338         return 0;
339     }
340
341     if(physDev->Devmode->dmPublic.u1.s1.dmOrientation == DMORIENT_LANDSCAPE) {
342         if(physDev->pi->ppd->LandscapeOrientation == -90) {
343             xtrans = physDev->PageSize.right;
344             ytrans = physDev->PageSize.top;
345             rotation = 90;
346         } else {
347             xtrans = physDev->PageSize.left;
348             ytrans = physDev->PageSize.bottom;
349             rotation = -90;
350         }
351     } else {
352         xtrans = physDev->PageSize.left;
353         ytrans = physDev->PageSize.top;
354         rotation = 0;
355     }
356
357     sprintf(buf, psnewpage, name, physDev->job.PageNo,
358             physDev->logPixelsX, physDev->logPixelsY,
359             xtrans, ytrans, rotation);
360
361     if( WriteSpool16( physDev->job.hJob, buf, strlen(buf) ) != 
362                                                      strlen(buf) ) {
363         WARN("WriteSpool error\n");
364         HeapFree( PSDRV_Heap, 0, buf );
365         return 0;
366     }
367     HeapFree( PSDRV_Heap, 0, buf );
368     return 1;
369 }
370
371
372 BOOL PSDRV_WriteMoveTo(DC *dc, INT x, INT y)
373 {
374     char buf[100];
375
376     sprintf(buf, psmoveto, x, y);
377     return PSDRV_WriteSpool(dc, buf, strlen(buf));
378 }
379
380 BOOL PSDRV_WriteLineTo(DC *dc, INT x, INT y)
381 {
382     char buf[100];
383
384     sprintf(buf, pslineto, x, y);
385     return PSDRV_WriteSpool(dc, buf, strlen(buf));
386 }
387
388
389 BOOL PSDRV_WriteStroke(DC *dc)
390 {
391     return PSDRV_WriteSpool(dc, psstroke, sizeof(psstroke)-1);
392 }
393
394
395
396 BOOL PSDRV_WriteRectangle(DC *dc, INT x, INT y, INT width, 
397                         INT height)
398 {
399     char buf[100];
400
401     sprintf(buf, psrectangle, x, y, width, height, -width);
402     return PSDRV_WriteSpool(dc, buf, strlen(buf));
403 }
404
405 BOOL PSDRV_WriteRRectangle(DC *dc, INT x, INT y, INT width,
406       INT height)
407 {
408     char buf[100];
409
410     sprintf(buf, psrrectangle, x, y, width, height, -width);
411     return PSDRV_WriteSpool(dc, buf, strlen(buf));
412 }
413
414 BOOL PSDRV_WriteArc(DC *dc, INT x, INT y, INT w, INT h, double ang1,
415                       double ang2)
416 {
417     char buf[256];
418
419     /* Make angles -ve and swap order because we're working with an upside
420        down y-axis */
421     sprintf(buf, psarc, x, y, w, h, -ang2, -ang1);
422     return PSDRV_WriteSpool(dc, buf, strlen(buf));
423 }
424
425 BOOL PSDRV_WriteSetFont(DC *dc)
426 {
427     PSDRV_PDEVICE *physDev = (PSDRV_PDEVICE *)dc->physDev;
428     char *buf;
429
430     buf = (char *)HeapAlloc( PSDRV_Heap, 0,
431              sizeof(pssetfont) + strlen(physDev->font.afm->FontName) + 40);
432
433     if(!buf) {
434         WARN("HeapAlloc failed\n");
435         return FALSE;
436     }
437     
438     sprintf(buf, pssetfont, physDev->font.afm->FontName, 
439                 physDev->font.size, -physDev->font.size,
440                 -physDev->font.escapement);
441
442     PSDRV_WriteSpool(dc, buf, strlen(buf));
443     HeapFree(PSDRV_Heap, 0, buf);
444     return TRUE;
445 }    
446
447 BOOL PSDRV_WriteSetColor(DC *dc, PSCOLOR *color)
448 {
449     PSDRV_PDEVICE *physDev = (PSDRV_PDEVICE *)dc->physDev;
450     char buf[256];
451
452     PSDRV_CopyColor(&physDev->inkColor, color);
453     switch(color->type) {
454     case PSCOLOR_RGB:
455         sprintf(buf, pssetrgbcolor, color->value.rgb.r, color->value.rgb.g,
456                 color->value.rgb.b);
457         return PSDRV_WriteSpool(dc, buf, strlen(buf));
458
459     case PSCOLOR_GRAY:  
460         sprintf(buf, pssetgray, color->value.gray.i);
461         return PSDRV_WriteSpool(dc, buf, strlen(buf));
462         
463     default:
464         ERR("Unkonwn colour type %d\n", color->type);
465         break;
466     }
467
468     return FALSE;
469 }
470
471 BOOL PSDRV_WriteSetPen(DC *dc)
472 {
473     PSDRV_PDEVICE *physDev = (PSDRV_PDEVICE *)dc->physDev;
474     char buf[256];
475
476     sprintf(buf, pssetlinewidth, physDev->pen.width);
477     PSDRV_WriteSpool(dc, buf, strlen(buf));
478
479     if(physDev->pen.dash) {
480         sprintf(buf, pssetdash, physDev->pen.dash, 0);
481         PSDRV_WriteSpool(dc, buf, strlen(buf));
482     }
483
484     return TRUE;
485 }
486
487 BOOL PSDRV_WriteGlyphShow(DC *dc, LPCWSTR str, INT count)
488 {
489     char    buf[128];
490     int     i;
491     
492     for (i = 0; i < count; ++i)
493     {
494         LPCSTR  name;
495         int     l;
496         
497         name = PSDRV_UVMetrics(str[i],
498                 ((PSDRV_PDEVICE *)dc->physDev)->font.afm)->N->sz;
499         l = snprintf(buf, sizeof(buf), psglyphshow, name);
500         
501         if (l < sizeof(psglyphshow) - 2 || l > sizeof(buf) - 1)
502         {
503             WARN("Unusable glyph name '%s' - ignoring\n", name);
504             continue;
505         }
506         
507         PSDRV_WriteSpool(dc, buf, l);
508     }
509     
510     return TRUE;
511 }
512
513 BOOL PSDRV_WriteFill(DC *dc)
514 {
515     return PSDRV_WriteSpool(dc, psfill, sizeof(psfill)-1);
516 }
517
518 BOOL PSDRV_WriteEOFill(DC *dc)
519 {
520     return PSDRV_WriteSpool(dc, pseofill, sizeof(pseofill)-1);
521 }
522
523 BOOL PSDRV_WriteGSave(DC *dc)
524 {
525     return PSDRV_WriteSpool(dc, psgsave, sizeof(psgsave)-1);
526 }
527
528 BOOL PSDRV_WriteGRestore(DC *dc)
529 {
530     return PSDRV_WriteSpool(dc, psgrestore, sizeof(psgrestore)-1);
531 }
532
533 BOOL PSDRV_WriteNewPath(DC *dc)
534 {
535     return PSDRV_WriteSpool(dc, psnewpath, sizeof(psnewpath)-1);
536 }
537
538 BOOL PSDRV_WriteClosePath(DC *dc)
539 {
540     return PSDRV_WriteSpool(dc, psclosepath, sizeof(psclosepath)-1);
541 }
542
543 BOOL PSDRV_WriteClip(DC *dc)
544 {
545     return PSDRV_WriteSpool(dc, psclip, sizeof(psclip)-1);
546 }
547
548 BOOL PSDRV_WriteEOClip(DC *dc)
549 {
550     return PSDRV_WriteSpool(dc, pseoclip, sizeof(pseoclip)-1);
551 }
552
553 BOOL PSDRV_WriteInitClip(DC *dc)
554 {
555     return PSDRV_WriteSpool(dc, psinitclip, sizeof(psinitclip)-1);
556 }
557
558 BOOL PSDRV_WriteHatch(DC *dc)
559 {
560     return PSDRV_WriteSpool(dc, pshatch, sizeof(pshatch)-1);
561 }
562
563 BOOL PSDRV_WriteRotate(DC *dc, float ang)
564 {
565     char buf[256];
566
567     sprintf(buf, psrotate, ang);
568     return PSDRV_WriteSpool(dc, buf, strlen(buf));
569 }
570
571 BOOL PSDRV_WriteIndexColorSpaceBegin(DC *dc, int size)
572 {
573     char buf[256];
574     sprintf(buf, "[/Indexed /DeviceRGB %d\n<\n", size);
575     return PSDRV_WriteSpool(dc, buf, strlen(buf));
576 }
577
578 BOOL PSDRV_WriteIndexColorSpaceEnd(DC *dc)
579 {
580     char buf[] = ">\n] setcolorspace\n";
581     return PSDRV_WriteSpool(dc, buf, sizeof(buf) - 1);
582
583
584 BOOL PSDRV_WriteRGB(DC *dc, COLORREF *map, int number)
585 {
586     char *buf = HeapAlloc(PSDRV_Heap, 0, number * 7 + 1), *ptr;
587     int i;
588
589     ptr = buf;
590     for(i = 0; i < number; i++) {
591         sprintf(ptr, "%02x%02x%02x%c", (int)GetRValue(map[i]), 
592                 (int)GetGValue(map[i]), (int)GetBValue(map[i]),
593                 ((i & 0x7) == 0x7) || (i == number - 1) ? '\n' : ' ');
594         ptr += 7;
595     }
596     PSDRV_WriteSpool(dc, buf, number * 7);
597     HeapFree(PSDRV_Heap, 0, buf);
598     return TRUE;
599 }
600
601
602 BOOL PSDRV_WriteImageDict(DC *dc, WORD depth, INT xDst, INT yDst,
603                           INT widthDst, INT heightDst, INT widthSrc,
604                           INT heightSrc, char *bits)
605 {
606     char start[] = "%d %d translate\n%d %d scale\n<<\n"
607       " /ImageType 1\n /Width %d\n /Height %d\n /BitsPerComponent %d\n"
608       " /ImageMatrix [%d 0 0 %d 0 %d]\n";
609
610     char decode1[] = " /Decode [0 %d]\n";
611     char decode3[] = " /Decode [0 1 0 1 0 1]\n";
612
613     char end[] = " /DataSource currentfile /ASCIIHexDecode filter\n>> image\n";
614     char endbits[] = " /DataSource <%s>\n>> image\n";
615
616     char *buf = HeapAlloc(PSDRV_Heap, 0, 1000);
617
618     sprintf(buf, start, xDst, yDst, widthDst, heightDst, widthSrc, heightSrc,
619             (depth < 8) ? depth : 8, widthSrc, -heightSrc, heightSrc);
620
621     PSDRV_WriteSpool(dc, buf, strlen(buf));
622
623     switch(depth) {
624     case 8:
625         sprintf(buf, decode1, 255);
626         break;
627
628     case 4:
629         sprintf(buf, decode1, 15);
630         break;
631
632     case 1:
633         sprintf(buf, decode1, 1);
634         break;
635
636     default:
637         strcpy(buf, decode3);
638         break;
639     }
640
641     PSDRV_WriteSpool(dc, buf, strlen(buf));
642
643     if(!bits)
644         PSDRV_WriteSpool(dc, end, sizeof(end) - 1);
645     else {
646         sprintf(buf, endbits, bits);
647         PSDRV_WriteSpool(dc, buf, strlen(buf));
648     }
649
650     HeapFree(PSDRV_Heap, 0, buf);
651     return TRUE;
652 }
653
654
655 BOOL PSDRV_WriteBytes(DC *dc, const BYTE *bytes, int number)
656 {
657     char *buf = HeapAlloc(PSDRV_Heap, 0, number * 3 + 1);
658     char *ptr;
659     int i;
660     
661     ptr = buf;
662     
663     for(i = 0; i < number; i++) {
664         sprintf(ptr, "%02x%c", bytes[i],
665                 ((i & 0xf) == 0xf) || (i == number - 1) ? '\n' : ' ');
666         ptr += 3;
667     }
668     PSDRV_WriteSpool(dc, buf, number * 3);
669
670     HeapFree(PSDRV_Heap, 0, buf);
671     return TRUE;
672 }
673
674 BOOL PSDRV_WriteDIBits16(DC *dc, const WORD *words, int number)
675 {
676     char *buf = HeapAlloc(PSDRV_Heap, 0, number * 7 + 1);
677     char *ptr;
678     int i;
679     
680     ptr = buf;
681     
682     for(i = 0; i < number; i++) {
683         int r, g, b;
684
685         /* We want 0x0 -- 0x1f to map to 0x0 -- 0xff */
686
687         r = words[i] >> 10 & 0x1f;
688         r = r << 3 | r >> 2;
689         g = words[i] >> 5 & 0x1f;
690         g = g << 3 | g >> 2;
691         b = words[i] & 0x1f;
692         b = b << 3 | b >> 2;
693         sprintf(ptr, "%02x%02x%02x%c", r, g, b,
694                 ((i & 0x7) == 0x7) || (i == number - 1) ? '\n' : ' ');
695         ptr += 7;
696     }
697     PSDRV_WriteSpool(dc, buf, number * 7);
698
699     HeapFree(PSDRV_Heap, 0, buf);
700     return TRUE;
701 }
702
703 BOOL PSDRV_WriteDIBits24(DC *dc, const BYTE *bits, int number)
704 {
705     char *buf = HeapAlloc(PSDRV_Heap, 0, number * 7 + 1);
706     char *ptr;
707     int i;
708     
709     ptr = buf;
710     
711     for(i = 0; i < number; i++) {
712         sprintf(ptr, "%02x%02x%02x%c", bits[i * 3 + 2], bits[i * 3 + 1],
713                 bits[i * 3],
714                 ((i & 0x7) == 0x7) || (i == number - 1) ? '\n' : ' ');
715         ptr += 7;
716     }
717     PSDRV_WriteSpool(dc, buf, number * 7);
718
719     HeapFree(PSDRV_Heap, 0, buf);
720     return TRUE;
721 }
722
723 BOOL PSDRV_WriteDIBits32(DC *dc, const BYTE *bits, int number)
724 {
725     char *buf = HeapAlloc(PSDRV_Heap, 0, number * 7 + 1);
726     char *ptr;
727     int i;
728     
729     ptr = buf;
730     
731     for(i = 0; i < number; i++) {
732         sprintf(ptr, "%02x%02x%02x%c", bits[i * 4 + 2], bits[i * 4 + 1],
733                 bits[i * 4],
734                 ((i & 0x7) == 0x7) || (i == number - 1) ? '\n' : ' ');
735         ptr += 7;
736     }
737     PSDRV_WriteSpool(dc, buf, number * 7);
738
739     HeapFree(PSDRV_Heap, 0, buf);
740     return TRUE;
741 }
742
743 BOOL PSDRV_WriteArrayGet(DC *dc, CHAR *pszArrayName, INT nIndex)
744 {
745     char buf[100];
746
747     sprintf(buf, psarrayget, pszArrayName, nIndex);
748     return PSDRV_WriteSpool(dc, buf, strlen(buf));
749 }
750
751 BOOL PSDRV_WriteArrayPut(DC *dc, CHAR *pszArrayName, INT nIndex, LONG lObject)
752 {
753     char buf[100];
754
755     sprintf(buf, psarrayput, pszArrayName, nIndex, lObject);
756     return PSDRV_WriteSpool(dc, buf, strlen(buf));
757 }
758
759 BOOL PSDRV_WriteArrayDef(DC *dc, CHAR *pszArrayName, INT nSize)
760 {
761     char buf[100];
762
763     sprintf(buf, psarraydef, pszArrayName, nSize);
764     return PSDRV_WriteSpool(dc, buf, strlen(buf));
765 }
766
767 BOOL PSDRV_WriteRectClip(DC *dc, INT x, INT y, INT w, INT h)
768 {
769     char buf[100];
770
771     sprintf(buf, psrectclip, x, y, w, h);
772     return PSDRV_WriteSpool(dc, buf, strlen(buf));
773 }
774
775 BOOL PSDRV_WriteRectClip2(DC *dc, CHAR *pszArrayName)
776 {
777     char buf[100];
778
779     sprintf(buf, psrectclip2, pszArrayName);
780     return PSDRV_WriteSpool(dc, buf, strlen(buf));
781 }
782
783 BOOL PSDRV_WritePatternDict(DC *dc, BITMAP *bm, BYTE *bits)
784 {
785     char start[] = "<<\n /PaintType 1\n /PatternType 1\n /TilingType 1\n "
786       "/BBox [0 0 %d %d]\n /XStep %d\n /YStep %d\n /PaintProc {\n  begin\n";
787
788     char end[] = "  end\n }\n>>\n matrix makepattern setpattern\n";
789     char *buf, *ptr;
790     INT w, h, x, y;
791     COLORREF map[2];
792
793     w = bm->bmWidth & ~0x7;
794     h = bm->bmHeight & ~0x7;
795
796     buf = HeapAlloc(PSDRV_Heap, 0, sizeof(start) + 100);
797     sprintf(buf, start, w, h, w, h);
798     PSDRV_WriteSpool(dc,  buf, strlen(buf));
799     PSDRV_WriteIndexColorSpaceBegin(dc, 1);
800     map[0] = dc->textColor;
801     map[1] = dc->backgroundColor;
802     PSDRV_WriteRGB(dc, map, 2);
803     PSDRV_WriteIndexColorSpaceEnd(dc);
804     ptr = buf;
805     for(y = h-1; y >= 0; y--) {
806         for(x = 0; x < w/8; x++) {
807             sprintf(ptr, "%02x", *(bits + x/8 + y * bm->bmWidthBytes));
808             ptr += 2;
809         }
810     }
811     PSDRV_WriteImageDict(dc, 1, 0, 0, 8, 8, 8, 8, buf);
812     PSDRV_WriteSpool(dc, end, sizeof(end) - 1);
813     HeapFree(PSDRV_Heap, 0, buf);
814     return TRUE;
815 }