2 * PostScript output functions
4 * Copyright 1998 Huw D M Davies
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #define NONAMELESSUNION
28 #define NONAMELESSSTRUCT
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(psdrv
);
37 static const char psheader
[] = /* title llx lly urx ury */
39 "%%%%Creator: Wine PostScript Driver\n"
41 "%%%%BoundingBox: %d %d %d %d\n"
42 "%%%%Pages: (atend)\n"
45 static const char psbeginprolog
[] =
48 static const char psendprolog
[] =
51 static const char psprolog
[] =
52 "/tmpmtrx matrix def\n"
55 " /b exch def /r exch def /t exch def /l exch def /gap 32 def\n"
56 " l cvi gap idiv gap mul\n"
58 " r cvi gap idiv gap mul\n"
59 " {t moveto 0 b t sub rlineto}\n"
62 "/B {pop pop pop pop} def\n"
64 "/havetype42gdir {version cvi 2015 ge} bind def\n";
66 static const char psbeginsetup
[] =
69 static const char psendsetup
[] =
72 static const char psbeginfeature
[] = /* feature, value */
74 "%%%%BeginFeature: %s %s\n";
76 static const char psendfeature
[] =
78 "} stopped cleartomark\n";
80 static const char psnewpage
[] = /* name, number, xres, yres, xtrans, ytrans, rot */
82 "%%%%BeginPageSetup\n"
84 "72 %d div 72 %d div scale\n"
90 static const char psendpage
[] =
94 static const char psfooter
[] = /* pages */
99 static const char psmoveto
[] = /* x, y */
102 static const char pslineto
[] = /* x, y */
105 static const char psstroke
[] =
108 static const char psrectangle
[] = /* x, y, width, height, -width */
115 static const char psrrectangle
[] = /* x, y, width, height, -width */
122 static const char psglyphshow
[] = /* glyph name */
125 static const char pssetfont
[] = /* fontname, xscale, yscale, ascent, escapement */
128 "%d 10 div matrix rotate\n"
129 "matrix concatmatrix\n"
130 "makefont setfont\n";
132 static const char pssetlinewidth
[] = /* width */
135 static const char pssetdash
[] = /* dash, offset */
138 static const char pssetgray
[] = /* gray */
141 static const char pssetrgbcolor
[] = /* r, g, b */
142 "%.2f %.2f %.2f setrgbcolor\n";
144 static const char psarc
[] = /* x, y, w, h, ang1, ang2 */
145 "tmpmtrx currentmatrix pop\n"
148 "0 0 0.5 %.1f %.1f arc\n"
149 "tmpmtrx setmatrix\n";
151 static const char psgsave
[] =
154 static const char psgrestore
[] =
157 static const char psfill
[] =
160 static const char pseofill
[] =
163 static const char psnewpath
[] =
166 static const char psclosepath
[] =
169 static const char psclip
[] =
172 static const char psinitclip
[] =
175 static const char pseoclip
[] =
178 static const char psrectclip
[] =
179 "%d %d %d %d rectclip\n";
181 static const char psrectclip2
[] =
184 static const char pshatch
[] =
187 static const char psrotate
[] = /* ang */
190 static const char psarrayget
[] =
193 static const char psarrayput
[] =
196 static const char psarraydef
[] =
197 "/%s %d array def\n";
199 static const char psenddocument
[] =
202 DWORD
PSDRV_WriteSpool(PSDRV_PDEVICE
*physDev
, LPCSTR lpData
, DWORD cch
)
204 int num
, num_left
= cch
;
206 if(physDev
->job
.quiet
) {
207 TRACE("ignoring output\n");
211 if(physDev
->job
.in_passthrough
) { /* Was in PASSTHROUGH mode */
212 WriteSpool16( physDev
->job
.hJob
, (LPSTR
)psenddocument
, sizeof(psenddocument
)-1 );
213 physDev
->job
.in_passthrough
= physDev
->job
.had_passthrough_rect
= FALSE
;
216 if(physDev
->job
.OutOfPage
) { /* Will get here after NEWFRAME Escape */
217 if( !PSDRV_StartPage(physDev
) )
222 num
= min(num_left
, 0x8000);
223 if(WriteSpool16( physDev
->job
.hJob
, (LPSTR
)lpData
, num
) != num
)
233 static INT
PSDRV_WriteFeature(HANDLE16 hJob
, LPCSTR feature
, LPCSTR value
, LPSTR invocation
)
236 char *buf
= HeapAlloc( PSDRV_Heap
, 0, sizeof(psbeginfeature
) +
237 strlen(feature
) + strlen(value
));
240 sprintf(buf
, psbeginfeature
, feature
, value
);
241 WriteSpool16( hJob
, buf
, strlen(buf
) );
243 WriteSpool16( hJob
, invocation
, strlen(invocation
) );
245 WriteSpool16( hJob
, (LPSTR
)psendfeature
, strlen(psendfeature
) );
247 HeapFree( PSDRV_Heap
, 0, buf
);
251 /********************************************************
254 * Helper for PSDRV_WriteHeader. Escape any non-printable characters
255 * as octal. If we've had to use an escape then surround the entire string
256 * in brackets. Truncate string to represent at most 0x80 characters.
259 static char *escape_title(LPCSTR str
)
266 ret
= HeapAlloc(GetProcessHeap(), 0, 1);
271 for(i
= 0; i
< 0x80 && str
[i
]; i
++)
279 ret
= HeapAlloc(GetProcessHeap(), 0, i
+ 1);
285 extra
+= 2; /* two for the brackets */
286 cp
= ret
= HeapAlloc(GetProcessHeap(), 0, i
+ extra
+ 1);
288 for(i
= 0; i
< 0x80 && str
[i
]; i
++)
292 BYTE b
= (BYTE
)str
[i
];
294 *cp
++ = ((b
>> 6) & 0x7) + '0';
295 *cp
++ = ((b
>> 3) & 0x7) + '0';
296 *cp
++ = ((b
) & 0x7) + '0';
307 INT
PSDRV_WriteHeader( PSDRV_PDEVICE
*physDev
, LPCSTR title
)
309 char *buf
, *escaped_title
;
314 int llx
, lly
, urx
, ury
;
316 TRACE("%s\n", debugstr_a(title
));
318 escaped_title
= escape_title(title
);
319 buf
= HeapAlloc( PSDRV_Heap
, 0, sizeof(psheader
) +
320 strlen(escaped_title
) + 30 );
322 WARN("HeapAlloc failed\n");
326 /* BBox co-ords are in default user co-ord system so urx < ury even in
328 llx
= physDev
->ImageableArea
.left
* 72.0 / physDev
->logPixelsX
;
329 lly
= physDev
->ImageableArea
.bottom
* 72.0 / physDev
->logPixelsY
;
330 urx
= physDev
->ImageableArea
.right
* 72.0 / physDev
->logPixelsX
;
331 ury
= physDev
->ImageableArea
.top
* 72.0 / physDev
->logPixelsY
;
332 /* FIXME should do something better with BBox */
334 sprintf(buf
, psheader
, escaped_title
, llx
, lly
, urx
, ury
);
336 HeapFree(GetProcessHeap(), 0, escaped_title
);
337 if( WriteSpool16( physDev
->job
.hJob
, buf
, strlen(buf
) ) !=
339 WARN("WriteSpool error\n");
340 HeapFree( PSDRV_Heap
, 0, buf
);
343 HeapFree( PSDRV_Heap
, 0, buf
);
345 WriteSpool16( physDev
->job
.hJob
, (LPSTR
)psbeginprolog
, strlen(psbeginprolog
) );
346 WriteSpool16( physDev
->job
.hJob
, (LPSTR
)psprolog
, strlen(psprolog
) );
347 WriteSpool16( physDev
->job
.hJob
, (LPSTR
)psendprolog
, strlen(psendprolog
) );
349 WriteSpool16( physDev
->job
.hJob
, (LPSTR
)psbeginsetup
, strlen(psbeginsetup
) );
351 if(physDev
->Devmode
->dmPublic
.u1
.s1
.dmCopies
> 1) {
352 char copies_buf
[100];
353 sprintf(copies_buf
, "mark {\n << /NumCopies %d >> setpagedevice\n} stopped cleartomark\n", physDev
->Devmode
->dmPublic
.u1
.s1
.dmCopies
);
354 WriteSpool16(physDev
->job
.hJob
, copies_buf
, strlen(copies_buf
));
357 for(slot
= physDev
->pi
->ppd
->InputSlots
; slot
; slot
= slot
->next
) {
358 if(slot
->WinBin
== physDev
->Devmode
->dmPublic
.u1
.s1
.dmDefaultSource
) {
359 if(slot
->InvocationString
) {
360 PSDRV_WriteFeature(physDev
->job
.hJob
, "*InputSlot", slot
->Name
,
361 slot
->InvocationString
);
367 LIST_FOR_EACH_ENTRY(page
, &physDev
->pi
->ppd
->PageSizes
, PAGESIZE
, entry
) {
368 if(page
->WinPage
== physDev
->Devmode
->dmPublic
.u1
.s1
.dmPaperSize
) {
369 if(page
->InvocationString
) {
370 PSDRV_WriteFeature(physDev
->job
.hJob
, "*PageSize", page
->Name
,
371 page
->InvocationString
);
377 win_duplex
= physDev
->Devmode
->dmPublic
.dmFields
& DM_DUPLEX
?
378 physDev
->Devmode
->dmPublic
.dmDuplex
: 0;
379 for(duplex
= physDev
->pi
->ppd
->Duplexes
; duplex
; duplex
= duplex
->next
) {
380 if(duplex
->WinDuplex
== win_duplex
) {
381 if(duplex
->InvocationString
) {
382 PSDRV_WriteFeature(physDev
->job
.hJob
, "*Duplex", duplex
->Name
,
383 duplex
->InvocationString
);
389 WriteSpool16( physDev
->job
.hJob
, (LPSTR
)psendsetup
, strlen(psendsetup
) );
396 INT
PSDRV_WriteFooter( PSDRV_PDEVICE
*physDev
)
400 buf
= HeapAlloc( PSDRV_Heap
, 0, sizeof(psfooter
) + 100 );
402 WARN("HeapAlloc failed\n");
406 sprintf(buf
, psfooter
, physDev
->job
.PageNo
);
408 if( WriteSpool16( physDev
->job
.hJob
, buf
, strlen(buf
) ) !=
410 WARN("WriteSpool error\n");
411 HeapFree( PSDRV_Heap
, 0, buf
);
414 HeapFree( PSDRV_Heap
, 0, buf
);
420 INT
PSDRV_WriteEndPage( PSDRV_PDEVICE
*physDev
)
422 if( WriteSpool16( physDev
->job
.hJob
, (LPSTR
)psendpage
, sizeof(psendpage
)-1 ) !=
423 sizeof(psendpage
)-1 ) {
424 WARN("WriteSpool error\n");
433 INT
PSDRV_WriteNewPage( PSDRV_PDEVICE
*physDev
)
437 signed int xtrans
, ytrans
, rotation
;
439 sprintf(name
, "%d", physDev
->job
.PageNo
);
441 buf
= HeapAlloc( PSDRV_Heap
, 0, sizeof(psnewpage
) + 200 );
443 WARN("HeapAlloc failed\n");
447 if(physDev
->Devmode
->dmPublic
.u1
.s1
.dmOrientation
== DMORIENT_LANDSCAPE
) {
448 if(physDev
->pi
->ppd
->LandscapeOrientation
== -90) {
449 xtrans
= physDev
->ImageableArea
.right
;
450 ytrans
= physDev
->ImageableArea
.top
;
453 xtrans
= physDev
->ImageableArea
.left
;
454 ytrans
= physDev
->ImageableArea
.bottom
;
458 xtrans
= physDev
->ImageableArea
.left
;
459 ytrans
= physDev
->ImageableArea
.top
;
463 sprintf(buf
, psnewpage
, name
, physDev
->job
.PageNo
,
464 physDev
->logPixelsX
, physDev
->logPixelsY
,
465 xtrans
, ytrans
, rotation
);
467 if( WriteSpool16( physDev
->job
.hJob
, buf
, strlen(buf
) ) !=
469 WARN("WriteSpool error\n");
470 HeapFree( PSDRV_Heap
, 0, buf
);
473 HeapFree( PSDRV_Heap
, 0, buf
);
478 BOOL
PSDRV_WriteMoveTo(PSDRV_PDEVICE
*physDev
, INT x
, INT y
)
482 sprintf(buf
, psmoveto
, x
, y
);
483 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
486 BOOL
PSDRV_WriteLineTo(PSDRV_PDEVICE
*physDev
, INT x
, INT y
)
490 sprintf(buf
, pslineto
, x
, y
);
491 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
495 BOOL
PSDRV_WriteStroke(PSDRV_PDEVICE
*physDev
)
497 return PSDRV_WriteSpool(physDev
, psstroke
, sizeof(psstroke
)-1);
502 BOOL
PSDRV_WriteRectangle(PSDRV_PDEVICE
*physDev
, INT x
, INT y
, INT width
,
507 sprintf(buf
, psrectangle
, x
, y
, width
, height
, -width
);
508 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
511 BOOL
PSDRV_WriteRRectangle(PSDRV_PDEVICE
*physDev
, INT x
, INT y
, INT width
,
516 sprintf(buf
, psrrectangle
, x
, y
, width
, height
, -width
);
517 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
520 BOOL
PSDRV_WriteArc(PSDRV_PDEVICE
*physDev
, INT x
, INT y
, INT w
, INT h
, double ang1
,
525 /* Make angles -ve and swap order because we're working with an upside
527 push_lc_numeric("C");
528 sprintf(buf
, psarc
, x
, y
, w
, h
, -ang2
, -ang1
);
530 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
534 BOOL
PSDRV_WriteSetFont(PSDRV_PDEVICE
*physDev
, const char *name
, INT size
, INT escapement
)
538 buf
= HeapAlloc( PSDRV_Heap
, 0, sizeof(pssetfont
) +
542 WARN("HeapAlloc failed\n");
546 sprintf(buf
, pssetfont
, name
, size
, -size
, -escapement
);
548 PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
549 HeapFree(PSDRV_Heap
, 0, buf
);
553 BOOL
PSDRV_WriteSetColor(PSDRV_PDEVICE
*physDev
, PSCOLOR
*color
)
557 PSDRV_CopyColor(&physDev
->inkColor
, color
);
558 switch(color
->type
) {
560 push_lc_numeric("C");
561 sprintf(buf
, pssetrgbcolor
, color
->value
.rgb
.r
, color
->value
.rgb
.g
,
564 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
567 push_lc_numeric("C");
568 sprintf(buf
, pssetgray
, color
->value
.gray
.i
);
570 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
573 ERR("Unkonwn colour type %d\n", color
->type
);
580 BOOL
PSDRV_WriteSetPen(PSDRV_PDEVICE
*physDev
)
584 sprintf(buf
, pssetlinewidth
, physDev
->pen
.width
);
585 PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
587 if(physDev
->pen
.dash
) {
588 sprintf(buf
, pssetdash
, physDev
->pen
.dash
, 0);
591 sprintf(buf
, pssetdash
, "", 0);
593 PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
598 BOOL
PSDRV_WriteGlyphShow(PSDRV_PDEVICE
*physDev
, LPCSTR g_name
)
603 l
= snprintf(buf
, sizeof(buf
), psglyphshow
, g_name
);
605 if (l
< sizeof(psglyphshow
) - 2 || l
> sizeof(buf
) - 1) {
606 WARN("Unusable glyph name '%s' - ignoring\n", g_name
);
610 PSDRV_WriteSpool(physDev
, buf
, l
);
614 BOOL
PSDRV_WriteFill(PSDRV_PDEVICE
*physDev
)
616 return PSDRV_WriteSpool(physDev
, psfill
, sizeof(psfill
)-1);
619 BOOL
PSDRV_WriteEOFill(PSDRV_PDEVICE
*physDev
)
621 return PSDRV_WriteSpool(physDev
, pseofill
, sizeof(pseofill
)-1);
624 BOOL
PSDRV_WriteGSave(PSDRV_PDEVICE
*physDev
)
626 return PSDRV_WriteSpool(physDev
, psgsave
, sizeof(psgsave
)-1);
629 BOOL
PSDRV_WriteGRestore(PSDRV_PDEVICE
*physDev
)
631 return PSDRV_WriteSpool(physDev
, psgrestore
, sizeof(psgrestore
)-1);
634 BOOL
PSDRV_WriteNewPath(PSDRV_PDEVICE
*physDev
)
636 return PSDRV_WriteSpool(physDev
, psnewpath
, sizeof(psnewpath
)-1);
639 BOOL
PSDRV_WriteClosePath(PSDRV_PDEVICE
*physDev
)
641 return PSDRV_WriteSpool(physDev
, psclosepath
, sizeof(psclosepath
)-1);
644 BOOL
PSDRV_WriteClip(PSDRV_PDEVICE
*physDev
)
646 return PSDRV_WriteSpool(physDev
, psclip
, sizeof(psclip
)-1);
649 BOOL
PSDRV_WriteEOClip(PSDRV_PDEVICE
*physDev
)
651 return PSDRV_WriteSpool(physDev
, pseoclip
, sizeof(pseoclip
)-1);
654 BOOL
PSDRV_WriteInitClip(PSDRV_PDEVICE
*physDev
)
656 return PSDRV_WriteSpool(physDev
, psinitclip
, sizeof(psinitclip
)-1);
659 BOOL
PSDRV_WriteHatch(PSDRV_PDEVICE
*physDev
)
661 return PSDRV_WriteSpool(physDev
, pshatch
, sizeof(pshatch
)-1);
664 BOOL
PSDRV_WriteRotate(PSDRV_PDEVICE
*physDev
, float ang
)
668 push_lc_numeric("C");
669 sprintf(buf
, psrotate
, ang
);
671 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
674 BOOL
PSDRV_WriteIndexColorSpaceBegin(PSDRV_PDEVICE
*physDev
, int size
)
677 sprintf(buf
, "[/Indexed /DeviceRGB %d\n<\n", size
);
678 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
681 BOOL
PSDRV_WriteIndexColorSpaceEnd(PSDRV_PDEVICE
*physDev
)
683 static const char buf
[] = ">\n] setcolorspace\n";
684 return PSDRV_WriteSpool(physDev
, buf
, sizeof(buf
) - 1);
687 BOOL
PSDRV_WriteRGB(PSDRV_PDEVICE
*physDev
, COLORREF
*map
, int number
)
689 char *buf
= HeapAlloc(PSDRV_Heap
, 0, number
* 7 + 1), *ptr
;
693 for(i
= 0; i
< number
; i
++) {
694 sprintf(ptr
, "%02x%02x%02x%c", (int)GetRValue(map
[i
]),
695 (int)GetGValue(map
[i
]), (int)GetBValue(map
[i
]),
696 ((i
& 0x7) == 0x7) || (i
== number
- 1) ? '\n' : ' ');
699 PSDRV_WriteSpool(physDev
, buf
, number
* 7);
700 HeapFree(PSDRV_Heap
, 0, buf
);
704 static BOOL
PSDRV_WriteImageDict(PSDRV_PDEVICE
*physDev
, WORD depth
,
705 INT widthSrc
, INT heightSrc
, char *bits
)
707 static const char start
[] = "<<\n"
708 " /ImageType 1\n /Width %d\n /Height %d\n /BitsPerComponent %d\n"
709 " /ImageMatrix [%d 0 0 %d 0 %d]\n";
711 static const char decode1
[] = " /Decode [0 %d]\n";
712 static const char decode3
[] = " /Decode [0 1 0 1 0 1]\n";
714 static const char end
[] = " /DataSource currentfile /ASCII85Decode filter /RunLengthDecode filter\n>>\n";
715 static const char endbits
[] = " /DataSource <%s>\n>>\n";
717 char *buf
= HeapAlloc(PSDRV_Heap
, 0, 1000);
719 sprintf(buf
, start
, widthSrc
, heightSrc
,
720 (depth
< 8) ? depth
: 8, widthSrc
, -heightSrc
, heightSrc
);
722 PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
726 sprintf(buf
, decode1
, 255);
730 sprintf(buf
, decode1
, 15);
734 sprintf(buf
, decode1
, 1);
738 strcpy(buf
, decode3
);
742 PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
745 PSDRV_WriteSpool(physDev
, end
, sizeof(end
) - 1);
747 sprintf(buf
, endbits
, bits
);
748 PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
751 HeapFree(PSDRV_Heap
, 0, buf
);
755 BOOL
PSDRV_WriteImage(PSDRV_PDEVICE
*physDev
, WORD depth
, INT xDst
, INT yDst
,
756 INT widthDst
, INT heightDst
, INT widthSrc
,
757 INT heightSrc
, BOOL mask
)
759 static const char start
[] = "%d %d translate\n%d %d scale\n";
760 static const char image
[] = "image\n";
761 static const char imagemask
[] = "imagemask\n";
764 sprintf(buf
, start
, xDst
, yDst
, widthDst
, heightDst
);
765 PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
766 PSDRV_WriteImageDict(physDev
, depth
, widthSrc
, heightSrc
, NULL
);
768 PSDRV_WriteSpool(physDev
, imagemask
, sizeof(imagemask
) - 1);
770 PSDRV_WriteSpool(physDev
, image
, sizeof(image
) - 1);
775 BOOL
PSDRV_WriteBytes(PSDRV_PDEVICE
*physDev
, const BYTE
*bytes
, DWORD number
)
777 char *buf
= HeapAlloc(PSDRV_Heap
, 0, number
* 3 + 1);
783 for(i
= 0; i
< number
; i
++) {
784 sprintf(ptr
, "%02x", bytes
[i
]);
786 if(((i
& 0xf) == 0xf) || (i
== number
- 1)) {
791 PSDRV_WriteSpool(physDev
, buf
, ptr
- buf
);
792 HeapFree(PSDRV_Heap
, 0, buf
);
796 BOOL
PSDRV_WriteData(PSDRV_PDEVICE
*physDev
, const BYTE
*data
, DWORD number
)
798 int num
, num_left
= number
;
801 num
= min(num_left
, 60);
802 PSDRV_WriteSpool(physDev
, (LPCSTR
)data
, num
);
803 PSDRV_WriteSpool(physDev
, "\n", 1);
811 BOOL
PSDRV_WriteArrayGet(PSDRV_PDEVICE
*physDev
, CHAR
*pszArrayName
, INT nIndex
)
815 sprintf(buf
, psarrayget
, pszArrayName
, nIndex
);
816 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
819 BOOL
PSDRV_WriteArrayPut(PSDRV_PDEVICE
*physDev
, CHAR
*pszArrayName
, INT nIndex
, LONG lObject
)
823 sprintf(buf
, psarrayput
, pszArrayName
, nIndex
, lObject
);
824 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
827 BOOL
PSDRV_WriteArrayDef(PSDRV_PDEVICE
*physDev
, CHAR
*pszArrayName
, INT nSize
)
831 sprintf(buf
, psarraydef
, pszArrayName
, nSize
);
832 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
835 BOOL
PSDRV_WriteRectClip(PSDRV_PDEVICE
*physDev
, INT x
, INT y
, INT w
, INT h
)
839 sprintf(buf
, psrectclip
, x
, y
, w
, h
);
840 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
843 BOOL
PSDRV_WriteRectClip2(PSDRV_PDEVICE
*physDev
, CHAR
*pszArrayName
)
847 sprintf(buf
, psrectclip2
, pszArrayName
);
848 return PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
851 BOOL
PSDRV_WritePatternDict(PSDRV_PDEVICE
*physDev
, BITMAP
*bm
, BYTE
*bits
)
853 static const char mypat
[] = "/mypat\n";
854 static const char do_pattern
[] = "<<\n /PaintType 1\n /PatternType 1\n /TilingType 1\n "
855 "/BBox [0 0 %d %d]\n /XStep %d\n /YStep %d\n /PaintProc {\n begin\n 0 0 translate\n"
856 " %d %d scale\n mypat image\n end\n }\n>>\n matrix makepattern setpattern\n";
859 INT w
, h
, x
, y
, w_mult
, h_mult
;
862 w
= bm
->bmWidth
& ~0x7;
863 h
= bm
->bmHeight
& ~0x7;
865 buf
= HeapAlloc(PSDRV_Heap
, 0, sizeof(do_pattern
) + 100);
867 for(y
= h
-1; y
>= 0; y
--) {
868 for(x
= 0; x
< w
/8; x
++) {
869 sprintf(ptr
, "%02x", *(bits
+ x
/8 + y
* bm
->bmWidthBytes
));
873 PSDRV_WriteSpool(physDev
, mypat
, sizeof(mypat
) - 1);
874 PSDRV_WriteImageDict(physDev
, 1, 8, 8, buf
);
875 PSDRV_WriteSpool(physDev
, "def\n", 4);
877 PSDRV_WriteIndexColorSpaceBegin(physDev
, 1);
878 map
[0] = GetTextColor( physDev
->hdc
);
879 map
[1] = GetBkColor( physDev
->hdc
);
880 PSDRV_WriteRGB(physDev
, map
, 2);
881 PSDRV_WriteIndexColorSpaceEnd(physDev
);
883 /* Windows seems to scale patterns so that a one pixel corresponds to 1/300" */
884 w_mult
= (physDev
->logPixelsX
+ 150) / 300;
885 h_mult
= (physDev
->logPixelsY
+ 150) / 300;
886 sprintf(buf
, do_pattern
, w
* w_mult
, h
* h_mult
, w
* w_mult
, h
* h_mult
, w
* w_mult
, h
* h_mult
);
887 PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
889 HeapFree(PSDRV_Heap
, 0, buf
);
893 BOOL
PSDRV_WriteDIBPatternDict(PSDRV_PDEVICE
*physDev
, BITMAPINFO
*bmi
, UINT usage
)
895 static const char mypat
[] = "/mypat\n";
896 static const char do_pattern
[] = "<<\n /PaintType 1\n /PatternType 1\n /TilingType 1\n "
897 "/BBox [0 0 %d %d]\n /XStep %d\n /YStep %d\n /PaintProc {\n begin\n 0 0 translate\n"
898 " %d %d scale\n mypat image\n end\n }\n>>\n matrix makepattern setpattern\n";
901 INT w
, h
, x
, y
, colours
, w_mult
, h_mult
;
904 if(bmi
->bmiHeader
.biBitCount
!= 1) {
905 FIXME("dib depth %d not supported\n", bmi
->bmiHeader
.biBitCount
);
909 bits
= (LPBYTE
)bmi
+ bmi
->bmiHeader
.biSize
;
910 colours
= bmi
->bmiHeader
.biClrUsed
;
911 if (colours
> 256) colours
= 256;
912 if(!colours
&& bmi
->bmiHeader
.biBitCount
<= 8)
913 colours
= 1 << bmi
->bmiHeader
.biBitCount
;
914 bits
+= colours
* ((usage
== DIB_RGB_COLORS
) ?
915 sizeof(RGBQUAD
) : sizeof(WORD
));
917 w
= bmi
->bmiHeader
.biWidth
& ~0x7;
918 h
= bmi
->bmiHeader
.biHeight
& ~0x7;
920 buf
= HeapAlloc(PSDRV_Heap
, 0, sizeof(do_pattern
) + 100);
922 for(y
= h
-1; y
>= 0; y
--) {
923 for(x
= 0; x
< w
/8; x
++) {
924 sprintf(ptr
, "%02x", *(bits
+ x
/8 + y
*
925 (bmi
->bmiHeader
.biWidth
+ 31) / 32 * 4));
929 PSDRV_WriteSpool(physDev
, mypat
, sizeof(mypat
) - 1);
930 PSDRV_WriteImageDict(physDev
, 1, 8, 8, buf
);
931 PSDRV_WriteSpool(physDev
, "def\n", 4);
933 PSDRV_WriteIndexColorSpaceBegin(physDev
, 1);
934 map
[0] = GetTextColor( physDev
->hdc
);
935 map
[1] = GetBkColor( physDev
->hdc
);
936 PSDRV_WriteRGB(physDev
, map
, 2);
937 PSDRV_WriteIndexColorSpaceEnd(physDev
);
939 /* Windows seems to scale patterns so that a one pixel corresponds to 1/300" */
940 w_mult
= (physDev
->logPixelsX
+ 150) / 300;
941 h_mult
= (physDev
->logPixelsY
+ 150) / 300;
942 sprintf(buf
, do_pattern
, w
* w_mult
, h
* h_mult
, w
* w_mult
, h
* h_mult
, w
* w_mult
, h
* h_mult
);
943 PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
944 HeapFree(PSDRV_Heap
, 0, buf
);