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
28 #define NONAMELESSUNION
29 #define NONAMELESSSTRUCT
34 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(psdrv
);
38 static const char psadobe
[] =
41 static const char media
[] = "%cupsJobTicket: media=";
42 static const char cups_one_sided
[] = "%cupsJobTicket: sides=one-sided\n";
43 static const char cups_two_sided_long
[] = "%cupsJobTicket: sides=two-sided-long-edge\n";
44 static const char cups_two_sided_short
[] = "%cupsJobTicket: sides=two-sided-short-edge\n";
45 static const char *cups_duplexes
[3] =
47 cups_one_sided
, /* DMDUP_SIMPLEX */
48 cups_two_sided_long
, /* DMDUP_VERTICAL */
49 cups_two_sided_short
/* DMDUP_HORIZONTAL */
52 static const char psheader
[] = /* title llx lly urx ury orientation */
53 "%%%%Creator: Wine PostScript Driver\n"
55 "%%%%BoundingBox: %d %d %d %d\n"
56 "%%%%Pages: (atend)\n"
57 "%%%%Orientation: %s\n"
60 static const char psbeginprolog
[] =
63 static const char psendprolog
[] =
66 static const char psprolog
[] =
67 "/tmpmtrx matrix def\n"
70 " /b exch def /r exch def /t exch def /l exch def /gap 32 def\n"
71 " l cvi gap idiv gap mul\n"
73 " r cvi gap idiv gap mul\n"
74 " {t moveto 0 b t sub rlineto}\n"
77 "/B {pop pop pop pop} def\n"
79 "/havetype42gdir {version cvi 2015 ge} bind def\n";
81 static const char psbeginsetup
[] =
84 static const char psendsetup
[] =
87 static const char psbeginfeature
[] = /* feature, value */
89 "%%%%BeginFeature: %s %s\n";
91 static const char psendfeature
[] =
93 "} stopped cleartomark\n";
95 static const char psnewpage
[] = /* name, number, xres, yres, xtrans, ytrans, rot */
97 "%%%%BeginPageSetup\n"
99 "72 %d div 72 %d div scale\n"
103 "%%%%EndPageSetup\n";
105 static const char psendpage
[] =
109 static const char psfooter
[] = /* pages */
114 static const char psmoveto
[] = /* x, y */
117 static const char pslineto
[] = /* x, y */
120 static const char psstroke
[] =
123 static const char psrectangle
[] = /* x, y, width, height, -width */
130 static const char psglyphshow
[] = /* glyph name */
133 static const char psfindfont
[] = /* fontname */
136 static const char psfakeitalic
[] =
137 "[1 0 0.25 1 0 0]\n";
139 static const char pssizematrix
[] =
140 "[%d %d %d %d 0 0]\n";
142 static const char psconcat
[] =
143 "matrix concatmatrix\n";
145 static const char psrotatefont
[] = /* escapement */
146 "%d 10 div matrix rotate\n"
147 "matrix concatmatrix\n";
149 static const char pssetfont
[] =
150 "makefont setfont\n";
152 static const char pssetline
[] = /* width, join, endcap */
153 "%d setlinewidth %u setlinejoin %u setlinecap\n";
155 static const char pssetgray
[] = /* gray */
158 static const char pssetrgbcolor
[] = /* r, g, b */
159 "%.2f %.2f %.2f setrgbcolor\n";
161 static const char psarc
[] = /* x, y, w, h, ang1, ang2 */
162 "tmpmtrx currentmatrix pop\n"
165 "0 0 0.5 %.1f %.1f arc\n"
166 "tmpmtrx setmatrix\n";
168 static const char pscurveto
[] = /* x1, y1, x2, y2, x3, y3 */
169 "%d %d %d %d %d %d curveto\n";
171 static const char psgsave
[] =
174 static const char psgrestore
[] =
177 static const char psfill
[] =
180 static const char pseofill
[] =
183 static const char psnewpath
[] =
186 static const char psclosepath
[] =
189 static const char psclip
[] =
192 static const char pseoclip
[] =
195 static const char psrectclip
[] =
196 "%d %d %d %d rectclip\n";
198 static const char psrectclip2
[] =
201 static const char pshatch
[] =
204 static const char psrotate
[] = /* ang */
207 static const char psarrayput
[] =
210 static const char psarraydef
[] =
211 "/%s %d array def\n";
213 static const char psenddocument
[] =
216 DWORD
PSDRV_WriteSpool(PHYSDEV dev
, LPCSTR lpData
, DWORD cch
)
218 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
219 int num
, num_left
= cch
;
221 if(physDev
->job
.quiet
) {
222 TRACE("ignoring output\n");
226 if(physDev
->job
.in_passthrough
) { /* Was in PASSTHROUGH mode */
227 write_spool( dev
, psenddocument
, sizeof(psenddocument
)-1 );
228 physDev
->job
.in_passthrough
= physDev
->job
.had_passthrough_rect
= FALSE
;
231 if(physDev
->job
.OutOfPage
) { /* Will get here after NEWFRAME Escape */
232 if( !PSDRV_StartPage(dev
) )
237 num
= min(num_left
, 0x8000);
238 if(write_spool( dev
, lpData
, num
) != num
)
248 static INT
PSDRV_WriteFeature(PHYSDEV dev
, LPCSTR feature
, LPCSTR value
, LPCSTR invocation
)
251 char *buf
= HeapAlloc( GetProcessHeap(), 0, sizeof(psbeginfeature
) +
252 strlen(feature
) + strlen(value
));
254 sprintf(buf
, psbeginfeature
, feature
, value
);
255 write_spool( dev
, buf
, strlen(buf
) );
256 write_spool( dev
, invocation
, strlen(invocation
) );
257 write_spool( dev
, psendfeature
, strlen(psendfeature
) );
259 HeapFree( GetProcessHeap(), 0, buf
);
263 /********************************************************
266 * Helper for PSDRV_WriteHeader. Escape any non-printable characters
267 * as octal. If we've had to use an escape then surround the entire string
268 * in brackets. Truncate string to represent at most 0x80 characters.
271 static char *escape_title(LPCWSTR wstr
)
273 char *ret
, *cp
, *str
;
278 ret
= HeapAlloc(GetProcessHeap(), 0, 1);
283 i
= WideCharToMultiByte( CP_ACP
, 0, wstr
, -1, NULL
, 0, NULL
, NULL
);
284 str
= HeapAlloc( GetProcessHeap(), 0, i
);
285 if (!str
) return NULL
;
286 WideCharToMultiByte( CP_ACP
, 0, wstr
, -1, str
, i
, NULL
, NULL
);
288 for(i
= 0; i
< 0x80 && str
[i
]; i
++)
296 ret
= HeapAlloc(GetProcessHeap(), 0, i
+ 1);
302 extra
+= 2; /* two for the brackets */
303 cp
= ret
= HeapAlloc(GetProcessHeap(), 0, i
+ extra
+ 1);
305 for(i
= 0; i
< 0x80 && str
[i
]; i
++)
309 BYTE b
= (BYTE
)str
[i
];
311 *cp
++ = ((b
>> 6) & 0x7) + '0';
312 *cp
++ = ((b
>> 3) & 0x7) + '0';
313 *cp
++ = ((b
) & 0x7) + '0';
322 HeapFree( GetProcessHeap(), 0, str
);
332 static void write_cups_job_ticket( PHYSDEV dev
, const struct ticket_info
*info
)
337 if (info
->page
&& info
->page
->InvocationString
)
339 len
= sizeof(media
) + strlen( info
->page
->Name
) + 1;
340 if (len
<= sizeof(buf
))
342 memcpy( buf
, media
, sizeof(media
) );
343 strcat( buf
, info
->page
->Name
);
345 write_spool( dev
, buf
, len
- 1 );
348 WARN( "paper name %s will be too long for DSC\n", info
->page
->Name
);
351 if (info
->duplex
&& info
->duplex
->InvocationString
)
353 if (info
->duplex
->WinDuplex
>= 1 && info
->duplex
->WinDuplex
<= 3)
355 const char *str
= cups_duplexes
[ info
->duplex
->WinDuplex
- 1 ];
356 write_spool( dev
, str
, strlen( str
) );
361 INT
PSDRV_WriteHeader( PHYSDEV dev
, LPCWSTR title
)
363 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
364 char *buf
, *escaped_title
;
365 INPUTSLOT
*slot
= find_slot( physDev
->pi
->ppd
, physDev
->Devmode
);
366 PAGESIZE
*page
= find_pagesize( physDev
->pi
->ppd
, physDev
->Devmode
);
367 DUPLEX
*duplex
= find_duplex( physDev
->pi
->ppd
, physDev
->Devmode
);
368 int llx
, lly
, urx
, ury
;
370 const char * dmOrientation
;
372 struct ticket_info ticket_info
= { page
, duplex
};
374 TRACE("%s\n", debugstr_w(title
));
376 len
= strlen( psadobe
);
377 ret
= write_spool( dev
, psadobe
, len
);
380 WARN("WriteSpool error\n");
384 write_cups_job_ticket( dev
, &ticket_info
);
386 escaped_title
= escape_title(title
);
387 buf
= HeapAlloc( GetProcessHeap(), 0, sizeof(psheader
) +
388 strlen(escaped_title
) + 30 );
390 WARN("HeapAlloc failed\n");
391 HeapFree(GetProcessHeap(), 0, escaped_title
);
395 /* BBox co-ords are in default user co-ord system so urx < ury even in
397 llx
= physDev
->ImageableArea
.left
* 72.0 / physDev
->logPixelsX
;
398 lly
= physDev
->ImageableArea
.bottom
* 72.0 / physDev
->logPixelsY
;
399 urx
= physDev
->ImageableArea
.right
* 72.0 / physDev
->logPixelsX
;
400 ury
= physDev
->ImageableArea
.top
* 72.0 / physDev
->logPixelsY
;
401 /* FIXME should do something better with BBox */
403 dmOrientation
= (physDev
->Devmode
->dmPublic
.u1
.s1
.dmOrientation
== DMORIENT_LANDSCAPE
? "Landscape" : "Portrait");
404 sprintf(buf
, psheader
, escaped_title
, llx
, lly
, urx
, ury
, dmOrientation
);
406 HeapFree(GetProcessHeap(), 0, escaped_title
);
409 write_spool( dev
, buf
, len
);
410 HeapFree( GetProcessHeap(), 0, buf
);
412 write_spool( dev
, psbeginprolog
, strlen(psbeginprolog
) );
413 write_spool( dev
, psprolog
, strlen(psprolog
) );
414 write_spool( dev
, psendprolog
, strlen(psendprolog
) );
415 write_spool( dev
, psbeginsetup
, strlen(psbeginsetup
) );
417 if(physDev
->Devmode
->dmPublic
.u1
.s1
.dmCopies
> 1) {
418 char copies_buf
[100];
419 sprintf(copies_buf
, "mark {\n << /NumCopies %d >> setpagedevice\n} stopped cleartomark\n", physDev
->Devmode
->dmPublic
.u1
.s1
.dmCopies
);
420 write_spool(dev
, copies_buf
, strlen(copies_buf
));
423 if (slot
&& slot
->InvocationString
)
424 PSDRV_WriteFeature( dev
, "*InputSlot", slot
->Name
, slot
->InvocationString
);
426 if (page
&& page
->InvocationString
)
427 PSDRV_WriteFeature( dev
, "*PageSize", page
->Name
, page
->InvocationString
);
429 if (duplex
&& duplex
->InvocationString
)
430 PSDRV_WriteFeature( dev
, "*Duplex", duplex
->Name
, duplex
->InvocationString
);
432 write_spool( dev
, psendsetup
, strlen(psendsetup
) );
439 INT
PSDRV_WriteFooter( PHYSDEV dev
)
441 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
445 buf
= HeapAlloc( GetProcessHeap(), 0, sizeof(psfooter
) + 100 );
447 WARN("HeapAlloc failed\n");
451 sprintf(buf
, psfooter
, physDev
->job
.PageNo
);
453 if( write_spool( dev
, buf
, strlen(buf
) ) != strlen(buf
) ) {
454 WARN("WriteSpool error\n");
457 HeapFree( GetProcessHeap(), 0, buf
);
463 INT
PSDRV_WriteEndPage( PHYSDEV dev
)
465 if( write_spool( dev
, psendpage
, sizeof(psendpage
)-1 ) != sizeof(psendpage
)-1 ) {
466 WARN("WriteSpool error\n");
475 INT
PSDRV_WriteNewPage( PHYSDEV dev
)
477 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
480 signed int xtrans
, ytrans
, rotation
;
483 sprintf(name
, "%d", physDev
->job
.PageNo
);
485 buf
= HeapAlloc( GetProcessHeap(), 0, sizeof(psnewpage
) + 200 );
487 WARN("HeapAlloc failed\n");
491 if(physDev
->Devmode
->dmPublic
.u1
.s1
.dmOrientation
== DMORIENT_LANDSCAPE
) {
492 if(physDev
->pi
->ppd
->LandscapeOrientation
== -90) {
493 xtrans
= physDev
->ImageableArea
.right
;
494 ytrans
= physDev
->ImageableArea
.top
;
497 xtrans
= physDev
->ImageableArea
.left
;
498 ytrans
= physDev
->ImageableArea
.bottom
;
502 xtrans
= physDev
->ImageableArea
.left
;
503 ytrans
= physDev
->ImageableArea
.top
;
507 sprintf(buf
, psnewpage
, name
, physDev
->job
.PageNo
,
508 physDev
->logPixelsX
, physDev
->logPixelsY
,
509 xtrans
, ytrans
, rotation
);
511 if( write_spool( dev
, buf
, strlen(buf
) ) != strlen(buf
) ) {
512 WARN("WriteSpool error\n");
515 HeapFree( GetProcessHeap(), 0, buf
);
520 BOOL
PSDRV_WriteMoveTo(PHYSDEV dev
, INT x
, INT y
)
524 sprintf(buf
, psmoveto
, x
, y
);
525 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
528 BOOL
PSDRV_WriteLineTo(PHYSDEV dev
, INT x
, INT y
)
532 sprintf(buf
, pslineto
, x
, y
);
533 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
537 BOOL
PSDRV_WriteStroke(PHYSDEV dev
)
539 return PSDRV_WriteSpool(dev
, psstroke
, sizeof(psstroke
)-1);
544 BOOL
PSDRV_WriteRectangle(PHYSDEV dev
, INT x
, INT y
, INT width
,
549 sprintf(buf
, psrectangle
, x
, y
, width
, height
, -width
);
550 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
553 BOOL
PSDRV_WriteArc(PHYSDEV dev
, INT x
, INT y
, INT w
, INT h
, double ang1
,
558 /* Make angles -ve and swap order because we're working with an upside
560 push_lc_numeric("C");
561 sprintf(buf
, psarc
, x
, y
, w
, h
, -ang2
, -ang1
);
563 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
566 BOOL
PSDRV_WriteCurveTo(PHYSDEV dev
, POINT pts
[3])
570 sprintf(buf
, pscurveto
, pts
[0].x
, pts
[0].y
, pts
[1].x
, pts
[1].y
, pts
[2].x
, pts
[2].y
);
571 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
574 BOOL
PSDRV_WriteSetFont(PHYSDEV dev
, const char *name
, matrix size
, INT escapement
, BOOL fake_italic
)
578 buf
= HeapAlloc( GetProcessHeap(), 0, strlen(name
) + 256 );
581 WARN("HeapAlloc failed\n");
585 sprintf( buf
, psfindfont
, name
);
586 PSDRV_WriteSpool( dev
, buf
, strlen(buf
) );
588 if (fake_italic
) PSDRV_WriteSpool( dev
, psfakeitalic
, sizeof(psfakeitalic
) - 1 );
590 sprintf( buf
, pssizematrix
, size
.xx
, size
.xy
, size
.yx
, size
.yy
);
591 PSDRV_WriteSpool( dev
, buf
, strlen(buf
) );
593 if (fake_italic
) PSDRV_WriteSpool( dev
, psconcat
, sizeof(psconcat
) - 1 );
597 sprintf( buf
, psrotatefont
, -escapement
);
598 PSDRV_WriteSpool( dev
, buf
, strlen(buf
) );
601 PSDRV_WriteSpool( dev
, pssetfont
, sizeof(pssetfont
) - 1 );
602 HeapFree( GetProcessHeap(), 0, buf
);
607 BOOL
PSDRV_WriteSetColor(PHYSDEV dev
, PSCOLOR
*color
)
609 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
612 PSDRV_CopyColor(&physDev
->inkColor
, color
);
613 switch(color
->type
) {
615 push_lc_numeric("C");
616 sprintf(buf
, pssetrgbcolor
, color
->value
.rgb
.r
, color
->value
.rgb
.g
,
619 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
622 push_lc_numeric("C");
623 sprintf(buf
, pssetgray
, color
->value
.gray
.i
);
625 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
628 ERR("Unknown colour type %d\n", color
->type
);
635 BOOL
PSDRV_WriteSetPen(PHYSDEV dev
)
637 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
641 sprintf(buf
, pssetline
, physDev
->pen
.width
, physDev
->pen
.join
, physDev
->pen
.endcap
);
642 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
644 if (physDev
->pen
.dash_len
)
646 for (i
= pos
= 0; i
< physDev
->pen
.dash_len
; i
++)
647 pos
+= sprintf( buf
+ pos
, " %u", physDev
->pen
.dash
[i
] );
649 sprintf(buf
+ pos
, "] %u setdash\n", 0);
652 sprintf(buf
, "[] %u setdash\n", 0);
654 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
659 BOOL
PSDRV_WriteGlyphShow(PHYSDEV dev
, LPCSTR g_name
)
664 l
= snprintf(buf
, sizeof(buf
), psglyphshow
, g_name
);
666 if (l
< sizeof(psglyphshow
) - 2 || l
> sizeof(buf
) - 1) {
667 WARN("Unusable glyph name '%s' - ignoring\n", g_name
);
671 PSDRV_WriteSpool(dev
, buf
, l
);
675 BOOL
PSDRV_WriteFill(PHYSDEV dev
)
677 return PSDRV_WriteSpool(dev
, psfill
, sizeof(psfill
)-1);
680 BOOL
PSDRV_WriteEOFill(PHYSDEV dev
)
682 return PSDRV_WriteSpool(dev
, pseofill
, sizeof(pseofill
)-1);
685 BOOL
PSDRV_WriteGSave(PHYSDEV dev
)
687 return PSDRV_WriteSpool(dev
, psgsave
, sizeof(psgsave
)-1);
690 BOOL
PSDRV_WriteGRestore(PHYSDEV dev
)
692 return PSDRV_WriteSpool(dev
, psgrestore
, sizeof(psgrestore
)-1);
695 BOOL
PSDRV_WriteNewPath(PHYSDEV dev
)
697 return PSDRV_WriteSpool(dev
, psnewpath
, sizeof(psnewpath
)-1);
700 BOOL
PSDRV_WriteClosePath(PHYSDEV dev
)
702 return PSDRV_WriteSpool(dev
, psclosepath
, sizeof(psclosepath
)-1);
705 BOOL
PSDRV_WriteClip(PHYSDEV dev
)
707 return PSDRV_WriteSpool(dev
, psclip
, sizeof(psclip
)-1);
710 BOOL
PSDRV_WriteEOClip(PHYSDEV dev
)
712 return PSDRV_WriteSpool(dev
, pseoclip
, sizeof(pseoclip
)-1);
715 BOOL
PSDRV_WriteHatch(PHYSDEV dev
)
717 return PSDRV_WriteSpool(dev
, pshatch
, sizeof(pshatch
)-1);
720 BOOL
PSDRV_WriteRotate(PHYSDEV dev
, float ang
)
724 push_lc_numeric("C");
725 sprintf(buf
, psrotate
, ang
);
727 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
730 BOOL
PSDRV_WriteIndexColorSpaceBegin(PHYSDEV dev
, int size
)
733 sprintf(buf
, "[/Indexed /DeviceRGB %d\n<\n", size
);
734 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
737 BOOL
PSDRV_WriteIndexColorSpaceEnd(PHYSDEV dev
)
739 static const char buf
[] = ">\n] setcolorspace\n";
740 return PSDRV_WriteSpool(dev
, buf
, sizeof(buf
) - 1);
743 static BOOL
PSDRV_WriteRGB(PHYSDEV dev
, COLORREF
*map
, int number
)
745 char *buf
= HeapAlloc( GetProcessHeap(), 0, number
* 7 + 1 ), *ptr
;
749 for(i
= 0; i
< number
; i
++) {
750 sprintf(ptr
, "%02x%02x%02x%c", (int)GetRValue(map
[i
]),
751 (int)GetGValue(map
[i
]), (int)GetBValue(map
[i
]),
752 ((i
& 0x7) == 0x7) || (i
== number
- 1) ? '\n' : ' ');
755 PSDRV_WriteSpool(dev
, buf
, number
* 7);
756 HeapFree( GetProcessHeap(), 0, buf
);
760 BOOL
PSDRV_WriteRGBQUAD(PHYSDEV dev
, const RGBQUAD
*rgb
, int number
)
762 char *buf
= HeapAlloc( GetProcessHeap(), 0, number
* 7 + 1 ), *ptr
;
766 for(i
= 0; i
< number
; i
++, rgb
++)
767 ptr
+= sprintf(ptr
, "%02x%02x%02x%c", rgb
->rgbRed
, rgb
->rgbGreen
, rgb
->rgbBlue
,
768 ((i
& 0x7) == 0x7) || (i
== number
- 1) ? '\n' : ' ');
770 PSDRV_WriteSpool(dev
, buf
, ptr
- buf
);
771 HeapFree( GetProcessHeap(), 0, buf
);
775 static BOOL
PSDRV_WriteImageDict(PHYSDEV dev
, WORD depth
, BOOL grayscale
,
776 INT widthSrc
, INT heightSrc
, char *bits
, BOOL top_down
)
778 static const char start
[] = "<<\n"
779 " /ImageType 1\n /Width %d\n /Height %d\n /BitsPerComponent %d\n"
780 " /ImageMatrix [%d 0 0 %d 0 %d]\n";
782 static const char decode1
[] = " /Decode [0 %d]\n";
783 static const char decode3
[] = " /Decode [0 1 0 1 0 1]\n";
785 static const char end
[] = " /DataSource currentfile /ASCII85Decode filter /RunLengthDecode filter\n>>\n";
786 static const char endbits
[] = " /DataSource <%s>\n>>\n";
790 sprintf(buf
, start
, widthSrc
, heightSrc
,
791 (depth
< 8) ? depth
: 8, widthSrc
, heightSrc
, 0);
793 sprintf(buf
, start
, widthSrc
, heightSrc
,
794 (depth
< 8) ? depth
: 8, widthSrc
, -heightSrc
, heightSrc
);
796 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
800 sprintf(buf
, decode1
, 255);
804 sprintf(buf
, decode1
, 15);
808 sprintf(buf
, decode1
, 1);
813 sprintf(buf
, decode1
, 1);
815 strcpy(buf
, decode3
);
819 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
822 PSDRV_WriteSpool(dev
, end
, sizeof(end
) - 1);
824 sprintf(buf
, endbits
, bits
);
825 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
831 BOOL
PSDRV_WriteImage(PHYSDEV dev
, WORD depth
, BOOL grayscale
, INT xDst
, INT yDst
,
832 INT widthDst
, INT heightDst
, INT widthSrc
,
833 INT heightSrc
, BOOL mask
, BOOL top_down
)
835 static const char start
[] = "%d %d translate\n%d %d scale\n";
836 static const char image
[] = "image\n";
837 static const char imagemask
[] = "imagemask\n";
840 sprintf(buf
, start
, xDst
, yDst
, widthDst
, heightDst
);
841 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
842 PSDRV_WriteImageDict(dev
, depth
, grayscale
, widthSrc
, heightSrc
, NULL
, top_down
);
844 PSDRV_WriteSpool(dev
, imagemask
, sizeof(imagemask
) - 1);
846 PSDRV_WriteSpool(dev
, image
, sizeof(image
) - 1);
851 BOOL
PSDRV_WriteBytes(PHYSDEV dev
, const BYTE
*bytes
, DWORD number
)
853 char *buf
= HeapAlloc( GetProcessHeap(), 0, number
* 3 + 1 );
859 for(i
= 0; i
< number
; i
++) {
860 sprintf(ptr
, "%02x", bytes
[i
]);
862 if(((i
& 0xf) == 0xf) || (i
== number
- 1)) {
867 PSDRV_WriteSpool(dev
, buf
, ptr
- buf
);
868 HeapFree( GetProcessHeap(), 0, buf
);
872 BOOL
PSDRV_WriteData(PHYSDEV dev
, const BYTE
*data
, DWORD number
)
874 int num
, num_left
= number
;
877 num
= min(num_left
, 60);
878 PSDRV_WriteSpool(dev
, (LPCSTR
)data
, num
);
879 PSDRV_WriteSpool(dev
, "\n", 1);
887 BOOL
PSDRV_WriteArrayPut(PHYSDEV dev
, CHAR
*pszArrayName
, INT nIndex
, LONG lObject
)
891 sprintf(buf
, psarrayput
, pszArrayName
, nIndex
, lObject
);
892 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
895 BOOL
PSDRV_WriteArrayDef(PHYSDEV dev
, CHAR
*pszArrayName
, INT nSize
)
899 sprintf(buf
, psarraydef
, pszArrayName
, nSize
);
900 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
903 BOOL
PSDRV_WriteRectClip(PHYSDEV dev
, INT x
, INT y
, INT w
, INT h
)
907 sprintf(buf
, psrectclip
, x
, y
, w
, h
);
908 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
911 BOOL
PSDRV_WriteRectClip2(PHYSDEV dev
, CHAR
*pszArrayName
)
915 sprintf(buf
, psrectclip2
, pszArrayName
);
916 return PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
919 BOOL
PSDRV_WriteDIBPatternDict(PHYSDEV dev
, const BITMAPINFO
*bmi
, BYTE
*bits
, UINT usage
)
921 static const char mypat
[] = "/mypat\n";
922 static const char do_pattern
[] = "<<\n /PaintType 1\n /PatternType 1\n /TilingType 1\n "
923 "/BBox [0 0 %d %d]\n /XStep %d\n /YStep %d\n /PaintProc {\n begin\n 0 0 translate\n"
924 " %d %d scale\n mypat image\n end\n }\n>>\n matrix makepattern setpattern\n";
925 PSDRV_PDEVICE
*physDev
= get_psdrv_dev( dev
);
927 INT w
, h
, x
, y
, w_mult
, h_mult
, abs_height
= abs( bmi
->bmiHeader
.biHeight
);
930 TRACE( "size %dx%dx%d\n",
931 bmi
->bmiHeader
.biWidth
, bmi
->bmiHeader
.biHeight
, bmi
->bmiHeader
.biBitCount
);
933 if(bmi
->bmiHeader
.biBitCount
!= 1) {
934 FIXME("dib depth %d not supported\n", bmi
->bmiHeader
.biBitCount
);
938 w
= bmi
->bmiHeader
.biWidth
& ~0x7;
939 h
= abs_height
& ~0x7;
941 buf
= HeapAlloc( GetProcessHeap(), 0, sizeof(do_pattern
) + 100 );
943 for(y
= h
-1; y
>= 0; y
--) {
944 for(x
= 0; x
< w
/8; x
++) {
945 sprintf(ptr
, "%02x", *(bits
+ x
/8 + y
*
946 (bmi
->bmiHeader
.biWidth
+ 31) / 32 * 4));
950 PSDRV_WriteSpool(dev
, mypat
, sizeof(mypat
) - 1);
951 PSDRV_WriteImageDict(dev
, 1, FALSE
, 8, 8, buf
, bmi
->bmiHeader
.biHeight
< 0);
952 PSDRV_WriteSpool(dev
, "def\n", 4);
954 PSDRV_WriteIndexColorSpaceBegin(dev
, 1);
955 map
[0] = GetTextColor( dev
->hdc
);
956 map
[1] = GetBkColor( dev
->hdc
);
957 PSDRV_WriteRGB(dev
, map
, 2);
958 PSDRV_WriteIndexColorSpaceEnd(dev
);
960 /* Windows seems to scale patterns so that a one pixel corresponds to 1/300" */
961 w_mult
= (physDev
->logPixelsX
+ 150) / 300;
962 h_mult
= (physDev
->logPixelsY
+ 150) / 300;
963 sprintf(buf
, do_pattern
, w
* w_mult
, h
* h_mult
, w
* w_mult
, h
* h_mult
, w
* w_mult
, h
* h_mult
);
964 PSDRV_WriteSpool(dev
, buf
, strlen(buf
));
965 HeapFree( GetProcessHeap(), 0, buf
);