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 psglyphshow
[] = /* glyph name */
118 static const char pssetfont
[] = /* fontname, xx_scale, xy_scale, yx_scale, yy_scale, escapement */
120 "[%d %d %d %d 0 0]\n"
121 "%d 10 div matrix rotate\n"
122 "matrix concatmatrix\n"
123 "makefont setfont\n";
125 static const char pssetline
[] = /* width, join, endcap */
126 "%d setlinewidth %u setlinejoin %u setlinecap\n";
128 static const char pssetgray
[] = /* gray */
131 static const char pssetrgbcolor
[] = /* r, g, b */
132 "%.2f %.2f %.2f setrgbcolor\n";
134 static const char psarc
[] = /* x, y, w, h, ang1, ang2 */
135 "tmpmtrx currentmatrix pop\n"
138 "0 0 0.5 %.1f %.1f arc\n"
139 "tmpmtrx setmatrix\n";
141 static const char pscurveto
[] = /* x1, y1, x2, y2, x3, y3 */
142 "%d %d %d %d %d %d curveto\n";
144 static const char psgsave
[] =
147 static const char psgrestore
[] =
150 static const char psfill
[] =
153 static const char pseofill
[] =
156 static const char psnewpath
[] =
159 static const char psclosepath
[] =
162 static const char psclip
[] =
165 static const char pseoclip
[] =
168 static const char psrectclip
[] =
169 "%d %d %d %d rectclip\n";
171 static const char psrectclip2
[] =
174 static const char pshatch
[] =
177 static const char psrotate
[] = /* ang */
180 static const char psarrayput
[] =
183 static const char psarraydef
[] =
184 "/%s %d array def\n";
186 static const char psenddocument
[] =
189 DWORD
PSDRV_WriteSpool(PHYSDEV dev
, LPCSTR lpData
, DWORD cch
)
191 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
192 int num
, num_left
= cch
;
194 if(physDev
->job
.quiet
) {
195 TRACE("ignoring output\n");
199 if(physDev
->job
.in_passthrough
) { /* Was in PASSTHROUGH mode */
200 write_spool( dev
, psenddocument
, sizeof(psenddocument
)-1 );
201 physDev
->job
.in_passthrough
= physDev
->job
.had_passthrough_rect
= FALSE
;
204 if(physDev
->job
.OutOfPage
) { /* Will get here after NEWFRAME Escape */
205 if( !PSDRV_StartPage(dev
) )
210 num
= min(num_left
, 0x8000);
211 if(write_spool( dev
, lpData
, num
) != num
)
221 static INT
PSDRV_WriteFeature(PHYSDEV dev
, LPCSTR feature
, LPCSTR value
, LPCSTR invocation
)
224 char *buf
= HeapAlloc( PSDRV_Heap
, 0, sizeof(psbeginfeature
) +
225 strlen(feature
) + strlen(value
));
227 sprintf(buf
, psbeginfeature
, feature
, value
);
228 write_spool( dev
, buf
, strlen(buf
) );
229 write_spool( dev
, invocation
, strlen(invocation
) );
230 write_spool( dev
, psendfeature
, strlen(psendfeature
) );
232 HeapFree( PSDRV_Heap
, 0, buf
);
236 /********************************************************
239 * Helper for PSDRV_WriteHeader. Escape any non-printable characters
240 * as octal. If we've had to use an escape then surround the entire string
241 * in brackets. Truncate string to represent at most 0x80 characters.
244 static char *escape_title(LPCSTR str
)
251 ret
= HeapAlloc(GetProcessHeap(), 0, 1);
256 for(i
= 0; i
< 0x80 && str
[i
]; i
++)
264 ret
= HeapAlloc(GetProcessHeap(), 0, i
+ 1);
270 extra
+= 2; /* two for the brackets */
271 cp
= ret
= HeapAlloc(GetProcessHeap(), 0, i
+ extra
+ 1);
273 for(i
= 0; i
< 0x80 && str
[i
]; i
++)
277 BYTE b
= (BYTE
)str
[i
];
279 *cp
++ = ((b
>> 6) & 0x7) + '0';
280 *cp
++ = ((b
>> 3) & 0x7) + '0';
281 *cp
++ = ((b
) & 0x7) + '0';
292 INT
PSDRV_WriteHeader( PHYSDEV dev
, LPCSTR title
)
294 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
295 char *buf
, *escaped_title
;
300 int llx
, lly
, urx
, ury
;
302 TRACE("%s\n", debugstr_a(title
));
304 escaped_title
= escape_title(title
);
305 buf
= HeapAlloc( PSDRV_Heap
, 0, sizeof(psheader
) +
306 strlen(escaped_title
) + 30 );
308 WARN("HeapAlloc failed\n");
312 /* BBox co-ords are in default user co-ord system so urx < ury even in
314 llx
= physDev
->ImageableArea
.left
* 72.0 / physDev
->logPixelsX
;
315 lly
= physDev
->ImageableArea
.bottom
* 72.0 / physDev
->logPixelsY
;
316 urx
= physDev
->ImageableArea
.right
* 72.0 / physDev
->logPixelsX
;
317 ury
= physDev
->ImageableArea
.top
* 72.0 / physDev
->logPixelsY
;
318 /* FIXME should do something better with BBox */
320 sprintf(buf
, psheader
, escaped_title
, llx
, lly
, urx
, ury
);
322 HeapFree(GetProcessHeap(), 0, escaped_title
);
323 if( write_spool( dev
, buf
, strlen(buf
) ) != strlen(buf
) ) {
324 WARN("WriteSpool error\n");
325 HeapFree( PSDRV_Heap
, 0, buf
);
328 HeapFree( PSDRV_Heap
, 0, buf
);
330 write_spool( dev
, psbeginprolog
, strlen(psbeginprolog
) );
331 write_spool( dev
, psprolog
, strlen(psprolog
) );
332 write_spool( dev
, psendprolog
, strlen(psendprolog
) );
333 write_spool( dev
, psbeginsetup
, strlen(psbeginsetup
) );
335 if(physDev
->Devmode
->dmPublic
.u1
.s1
.dmCopies
> 1) {
336 char copies_buf
[100];
337 sprintf(copies_buf
, "mark {\n << /NumCopies %d >> setpagedevice\n} stopped cleartomark\n", physDev
->Devmode
->dmPublic
.u1
.s1
.dmCopies
);
338 write_spool(dev
, copies_buf
, strlen(copies_buf
));
341 for(slot
= physDev
->pi
->ppd
->InputSlots
; slot
; slot
= slot
->next
) {
342 if(slot
->WinBin
== physDev
->Devmode
->dmPublic
.u1
.s1
.dmDefaultSource
) {
343 if(slot
->InvocationString
) {
344 PSDRV_WriteFeature(dev
, "*InputSlot", slot
->Name
,
345 slot
->InvocationString
);
351 LIST_FOR_EACH_ENTRY(page
, &physDev
->pi
->ppd
->PageSizes
, PAGESIZE
, entry
) {
352 if(page
->WinPage
== physDev
->Devmode
->dmPublic
.u1
.s1
.dmPaperSize
) {
353 if(page
->InvocationString
) {
354 PSDRV_WriteFeature(dev
, "*PageSize", page
->Name
,
355 page
->InvocationString
);
361 win_duplex
= physDev
->Devmode
->dmPublic
.dmFields
& DM_DUPLEX
?
362 physDev
->Devmode
->dmPublic
.dmDuplex
: 0;
363 for(duplex
= physDev
->pi
->ppd
->Duplexes
; duplex
; duplex
= duplex
->next
) {
364 if(duplex
->WinDuplex
== win_duplex
) {
365 if(duplex
->InvocationString
) {
366 PSDRV_WriteFeature(dev
, "*Duplex", duplex
->Name
,
367 duplex
->InvocationString
);
373 write_spool( dev
, psendsetup
, strlen(psendsetup
) );
380 INT
PSDRV_WriteFooter( PHYSDEV dev
)
382 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
385 buf
= HeapAlloc( PSDRV_Heap
, 0, sizeof(psfooter
) + 100 );
387 WARN("HeapAlloc failed\n");
391 sprintf(buf
, psfooter
, physDev
->job
.PageNo
);
393 if( write_spool( dev
, buf
, strlen(buf
) ) != strlen(buf
) ) {
394 WARN("WriteSpool error\n");
395 HeapFree( PSDRV_Heap
, 0, buf
);
398 HeapFree( PSDRV_Heap
, 0, buf
);
404 INT
PSDRV_WriteEndPage( PHYSDEV dev
)
406 if( write_spool( dev
, psendpage
, sizeof(psendpage
)-1 ) != sizeof(psendpage
)-1 ) {
407 WARN("WriteSpool error\n");
416 INT
PSDRV_WriteNewPage( PHYSDEV dev
)
418 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
421 signed int xtrans
, ytrans
, rotation
;
423 sprintf(name
, "%d", physDev
->job
.PageNo
);
425 buf
= HeapAlloc( PSDRV_Heap
, 0, sizeof(psnewpage
) + 200 );
427 WARN("HeapAlloc failed\n");
431 if(physDev
->Devmode
->dmPublic
.u1
.s1
.dmOrientation
== DMORIENT_LANDSCAPE
) {
432 if(physDev
->pi
->ppd
->LandscapeOrientation
== -90) {
433 xtrans
= physDev
->ImageableArea
.right
;
434 ytrans
= physDev
->ImageableArea
.top
;
437 xtrans
= physDev
->ImageableArea
.left
;
438 ytrans
= physDev
->ImageableArea
.bottom
;
442 xtrans
= physDev
->ImageableArea
.left
;
443 ytrans
= physDev
->ImageableArea
.top
;
447 sprintf(buf
, psnewpage
, name
, physDev
->job
.PageNo
,
448 physDev
->logPixelsX
, physDev
->logPixelsY
,
449 xtrans
, ytrans
, rotation
);
451 if( write_spool( dev
, buf
, strlen(buf
) ) != strlen(buf
) ) {
452 WARN("WriteSpool error\n");
453 HeapFree( PSDRV_Heap
, 0, buf
);
456 HeapFree( PSDRV_Heap
, 0, buf
);
461 BOOL
PSDRV_WriteMoveTo(PHYSDEV dev
, INT x
, INT y
)
465 sprintf(buf
, psmoveto
, x
, y
);
466 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
469 BOOL
PSDRV_WriteLineTo(PHYSDEV dev
, INT x
, INT y
)
473 sprintf(buf
, pslineto
, x
, y
);
474 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
478 BOOL
PSDRV_WriteStroke(PHYSDEV dev
)
480 return PSDRV_WriteSpool(dev
, psstroke
, sizeof(psstroke
)-1);
485 BOOL
PSDRV_WriteRectangle(PHYSDEV dev
, INT x
, INT y
, INT width
,
490 sprintf(buf
, psrectangle
, x
, y
, width
, height
, -width
);
491 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
494 BOOL
PSDRV_WriteArc(PHYSDEV dev
, INT x
, INT y
, INT w
, INT h
, double ang1
,
499 /* Make angles -ve and swap order because we're working with an upside
501 push_lc_numeric("C");
502 sprintf(buf
, psarc
, x
, y
, w
, h
, -ang2
, -ang1
);
504 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
507 BOOL
PSDRV_WriteCurveTo(PHYSDEV dev
, POINT pts
[3])
511 sprintf(buf
, pscurveto
, pts
[0].x
, pts
[0].y
, pts
[1].x
, pts
[1].y
, pts
[2].x
, pts
[2].y
);
512 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
516 BOOL
PSDRV_WriteSetFont(PHYSDEV dev
, const char *name
, matrix size
, INT escapement
)
520 buf
= HeapAlloc( PSDRV_Heap
, 0, sizeof(pssetfont
) +
524 WARN("HeapAlloc failed\n");
528 sprintf(buf
, pssetfont
, name
, size
.xx
, size
.xy
, size
.yx
, size
.yy
, -escapement
);
530 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
531 HeapFree(PSDRV_Heap
, 0, buf
);
535 BOOL
PSDRV_WriteSetColor(PHYSDEV dev
, PSCOLOR
*color
)
537 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
540 PSDRV_CopyColor(&physDev
->inkColor
, color
);
541 switch(color
->type
) {
543 push_lc_numeric("C");
544 sprintf(buf
, pssetrgbcolor
, color
->value
.rgb
.r
, color
->value
.rgb
.g
,
547 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
550 push_lc_numeric("C");
551 sprintf(buf
, pssetgray
, color
->value
.gray
.i
);
553 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
556 ERR("Unkonwn colour type %d\n", color
->type
);
563 BOOL
PSDRV_WriteSetPen(PHYSDEV dev
)
565 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
569 sprintf(buf
, pssetline
, physDev
->pen
.width
, physDev
->pen
.join
, physDev
->pen
.endcap
);
570 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
572 if (physDev
->pen
.dash_len
)
574 for (i
= pos
= 0; i
< physDev
->pen
.dash_len
; i
++)
575 pos
+= sprintf( buf
+ pos
, " %u", physDev
->pen
.dash
[i
] );
577 sprintf(buf
+ pos
, "] %u setdash\n", 0);
580 sprintf(buf
, "[] %u setdash\n", 0);
582 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
587 BOOL
PSDRV_WriteGlyphShow(PHYSDEV dev
, LPCSTR g_name
)
592 l
= snprintf(buf
, sizeof(buf
), psglyphshow
, g_name
);
594 if (l
< sizeof(psglyphshow
) - 2 || l
> sizeof(buf
) - 1) {
595 WARN("Unusable glyph name '%s' - ignoring\n", g_name
);
599 PSDRV_WriteSpool(dev
, buf
, l
);
603 BOOL
PSDRV_WriteFill(PHYSDEV dev
)
605 return PSDRV_WriteSpool(dev
, psfill
, sizeof(psfill
)-1);
608 BOOL
PSDRV_WriteEOFill(PHYSDEV dev
)
610 return PSDRV_WriteSpool(dev
, pseofill
, sizeof(pseofill
)-1);
613 BOOL
PSDRV_WriteGSave(PHYSDEV dev
)
615 return PSDRV_WriteSpool(dev
, psgsave
, sizeof(psgsave
)-1);
618 BOOL
PSDRV_WriteGRestore(PHYSDEV dev
)
620 return PSDRV_WriteSpool(dev
, psgrestore
, sizeof(psgrestore
)-1);
623 BOOL
PSDRV_WriteNewPath(PHYSDEV dev
)
625 return PSDRV_WriteSpool(dev
, psnewpath
, sizeof(psnewpath
)-1);
628 BOOL
PSDRV_WriteClosePath(PHYSDEV dev
)
630 return PSDRV_WriteSpool(dev
, psclosepath
, sizeof(psclosepath
)-1);
633 BOOL
PSDRV_WriteClip(PHYSDEV dev
)
635 return PSDRV_WriteSpool(dev
, psclip
, sizeof(psclip
)-1);
638 BOOL
PSDRV_WriteEOClip(PHYSDEV dev
)
640 return PSDRV_WriteSpool(dev
, pseoclip
, sizeof(pseoclip
)-1);
643 BOOL
PSDRV_WriteHatch(PHYSDEV dev
)
645 return PSDRV_WriteSpool(dev
, pshatch
, sizeof(pshatch
)-1);
648 BOOL
PSDRV_WriteRotate(PHYSDEV dev
, float ang
)
652 push_lc_numeric("C");
653 sprintf(buf
, psrotate
, ang
);
655 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
658 BOOL
PSDRV_WriteIndexColorSpaceBegin(PHYSDEV dev
, int size
)
661 sprintf(buf
, "[/Indexed /DeviceRGB %d\n<\n", size
);
662 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
665 BOOL
PSDRV_WriteIndexColorSpaceEnd(PHYSDEV dev
)
667 static const char buf
[] = ">\n] setcolorspace\n";
668 return PSDRV_WriteSpool(dev
, buf
, sizeof(buf
) - 1);
671 static BOOL
PSDRV_WriteRGB(PHYSDEV dev
, COLORREF
*map
, int number
)
673 char *buf
= HeapAlloc(PSDRV_Heap
, 0, number
* 7 + 1), *ptr
;
677 for(i
= 0; i
< number
; i
++) {
678 sprintf(ptr
, "%02x%02x%02x%c", (int)GetRValue(map
[i
]),
679 (int)GetGValue(map
[i
]), (int)GetBValue(map
[i
]),
680 ((i
& 0x7) == 0x7) || (i
== number
- 1) ? '\n' : ' ');
683 PSDRV_WriteSpool(dev
, buf
, number
* 7);
684 HeapFree(PSDRV_Heap
, 0, buf
);
688 BOOL
PSDRV_WriteRGBQUAD(PHYSDEV dev
, const RGBQUAD
*rgb
, int number
)
690 char *buf
= HeapAlloc(PSDRV_Heap
, 0, number
* 7 + 1), *ptr
;
694 for(i
= 0; i
< number
; i
++, rgb
++)
695 ptr
+= sprintf(ptr
, "%02x%02x%02x%c", rgb
->rgbRed
, rgb
->rgbGreen
, rgb
->rgbBlue
,
696 ((i
& 0x7) == 0x7) || (i
== number
- 1) ? '\n' : ' ');
698 PSDRV_WriteSpool(dev
, buf
, ptr
- buf
);
699 HeapFree(PSDRV_Heap
, 0, buf
);
703 static BOOL
PSDRV_WriteImageDict(PHYSDEV dev
, WORD depth
,
704 INT widthSrc
, INT heightSrc
, char *bits
, BOOL top_down
)
706 static const char start
[] = "<<\n"
707 " /ImageType 1\n /Width %d\n /Height %d\n /BitsPerComponent %d\n"
708 " /ImageMatrix [%d 0 0 %d 0 %d]\n";
710 static const char decode1
[] = " /Decode [0 %d]\n";
711 static const char decode3
[] = " /Decode [0 1 0 1 0 1]\n";
713 static const char end
[] = " /DataSource currentfile /ASCII85Decode filter /RunLengthDecode filter\n>>\n";
714 static const char endbits
[] = " /DataSource <%s>\n>>\n";
716 char *buf
= HeapAlloc(PSDRV_Heap
, 0, 1000);
719 sprintf(buf
, start
, widthSrc
, heightSrc
,
720 (depth
< 8) ? depth
: 8, widthSrc
, heightSrc
, 0);
722 sprintf(buf
, start
, widthSrc
, heightSrc
,
723 (depth
< 8) ? depth
: 8, widthSrc
, -heightSrc
, heightSrc
);
725 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
729 sprintf(buf
, decode1
, 255);
733 sprintf(buf
, decode1
, 15);
737 sprintf(buf
, decode1
, 1);
741 strcpy(buf
, decode3
);
745 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
748 PSDRV_WriteSpool(dev
, end
, sizeof(end
) - 1);
750 sprintf(buf
, endbits
, bits
);
751 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
754 HeapFree(PSDRV_Heap
, 0, buf
);
758 BOOL
PSDRV_WriteImage(PHYSDEV dev
, WORD depth
, INT xDst
, INT yDst
,
759 INT widthDst
, INT heightDst
, INT widthSrc
,
760 INT heightSrc
, BOOL mask
, BOOL top_down
)
762 static const char start
[] = "%d %d translate\n%d %d scale\n";
763 static const char image
[] = "image\n";
764 static const char imagemask
[] = "imagemask\n";
767 sprintf(buf
, start
, xDst
, yDst
, widthDst
, heightDst
);
768 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
769 PSDRV_WriteImageDict(dev
, depth
, widthSrc
, heightSrc
, NULL
, top_down
);
771 PSDRV_WriteSpool(dev
, imagemask
, sizeof(imagemask
) - 1);
773 PSDRV_WriteSpool(dev
, image
, sizeof(image
) - 1);
778 BOOL
PSDRV_WriteBytes(PHYSDEV dev
, const BYTE
*bytes
, DWORD number
)
780 char *buf
= HeapAlloc(PSDRV_Heap
, 0, number
* 3 + 1);
786 for(i
= 0; i
< number
; i
++) {
787 sprintf(ptr
, "%02x", bytes
[i
]);
789 if(((i
& 0xf) == 0xf) || (i
== number
- 1)) {
794 PSDRV_WriteSpool(dev
, buf
, ptr
- buf
);
795 HeapFree(PSDRV_Heap
, 0, buf
);
799 BOOL
PSDRV_WriteData(PHYSDEV dev
, const BYTE
*data
, DWORD number
)
801 int num
, num_left
= number
;
804 num
= min(num_left
, 60);
805 PSDRV_WriteSpool(dev
, (LPCSTR
)data
, num
);
806 PSDRV_WriteSpool(dev
, "\n", 1);
814 BOOL
PSDRV_WriteArrayPut(PHYSDEV dev
, CHAR
*pszArrayName
, INT nIndex
, LONG lObject
)
818 sprintf(buf
, psarrayput
, pszArrayName
, nIndex
, lObject
);
819 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
822 BOOL
PSDRV_WriteArrayDef(PHYSDEV dev
, CHAR
*pszArrayName
, INT nSize
)
826 sprintf(buf
, psarraydef
, pszArrayName
, nSize
);
827 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
830 BOOL
PSDRV_WriteRectClip(PHYSDEV dev
, INT x
, INT y
, INT w
, INT h
)
834 sprintf(buf
, psrectclip
, x
, y
, w
, h
);
835 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
838 BOOL
PSDRV_WriteRectClip2(PHYSDEV dev
, CHAR
*pszArrayName
)
842 sprintf(buf
, psrectclip2
, pszArrayName
);
843 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
846 BOOL
PSDRV_WriteDIBPatternDict(PHYSDEV dev
, const BITMAPINFO
*bmi
, BYTE
*bits
, UINT usage
)
848 static const char mypat
[] = "/mypat\n";
849 static const char do_pattern
[] = "<<\n /PaintType 1\n /PatternType 1\n /TilingType 1\n "
850 "/BBox [0 0 %d %d]\n /XStep %d\n /YStep %d\n /PaintProc {\n begin\n 0 0 translate\n"
851 " %d %d scale\n mypat image\n end\n }\n>>\n matrix makepattern setpattern\n";
852 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
854 INT w
, h
, x
, y
, w_mult
, h_mult
;
857 TRACE( "size %dx%dx%d\n",
858 bmi
->bmiHeader
.biWidth
, bmi
->bmiHeader
.biHeight
, bmi
->bmiHeader
.biBitCount
);
860 if(bmi
->bmiHeader
.biBitCount
!= 1) {
861 FIXME("dib depth %d not supported\n", bmi
->bmiHeader
.biBitCount
);
865 w
= bmi
->bmiHeader
.biWidth
& ~0x7;
866 h
= bmi
->bmiHeader
.biHeight
& ~0x7;
868 buf
= HeapAlloc(PSDRV_Heap
, 0, sizeof(do_pattern
) + 100);
870 for(y
= h
-1; y
>= 0; y
--) {
871 for(x
= 0; x
< w
/8; x
++) {
872 sprintf(ptr
, "%02x", *(bits
+ x
/8 + y
*
873 (bmi
->bmiHeader
.biWidth
+ 31) / 32 * 4));
877 PSDRV_WriteSpool(dev
, mypat
, sizeof(mypat
) - 1);
878 PSDRV_WriteImageDict(dev
, 1, 8, 8, buf
, FALSE
);
879 PSDRV_WriteSpool(dev
, "def\n", 4);
881 PSDRV_WriteIndexColorSpaceBegin(dev
, 1);
882 map
[0] = GetTextColor( dev
->hdc
);
883 map
[1] = GetBkColor( dev
->hdc
);
884 PSDRV_WriteRGB(dev
, map
, 2);
885 PSDRV_WriteIndexColorSpaceEnd(dev
);
887 /* Windows seems to scale patterns so that a one pixel corresponds to 1/300" */
888 w_mult
= (physDev
->logPixelsX
+ 150) / 300;
889 h_mult
= (physDev
->logPixelsY
+ 150) / 300;
890 sprintf(buf
, do_pattern
, w
* w_mult
, h
* h_mult
, w
* w_mult
, h
* h_mult
, w
* w_mult
, h
* h_mult
);
891 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
892 HeapFree(PSDRV_Heap
, 0, buf
);