2 * PostScript driver downloadable font functions
4 * Copyright 2002 Huw D M Davies for CodeWeavers
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(psdrv
);
37 #define MS_MAKE_TAG( _x1, _x2, _x3, _x4 ) \
38 ( ( (DWORD)_x4 << 24 ) | \
39 ( (DWORD)_x3 << 16 ) | \
40 ( (DWORD)_x2 << 8 ) | \
43 #define GET_BE_WORD(ptr) MAKEWORD( ((BYTE *)(ptr))[1], ((BYTE *)(ptr))[0] )
44 #define GET_BE_DWORD(ptr) ((DWORD)MAKELONG( GET_BE_WORD(&((WORD *)(ptr))[1]), \
45 GET_BE_WORD(&((WORD *)(ptr))[0]) ))
47 /****************************************************************************
50 static void get_download_name(PSDRV_PDEVICE
*physDev
, LPOUTLINETEXTMETRICA
55 len
= strlen((char*)potm
+ (ptrdiff_t)potm
->otmpFullName
) + 1;
56 *str
= HeapAlloc(GetProcessHeap(),0,len
);
57 strcpy(*str
, (char*)potm
+ (ptrdiff_t)potm
->otmpFullName
);
60 while((p
= strchr(p
, ' ')))
66 /****************************************************************************
69 static DOWNLOAD
*is_font_downloaded(PSDRV_PDEVICE
*physDev
, char *ps_name
)
73 for(pdl
= physDev
->downloaded_fonts
; pdl
; pdl
= pdl
->next
)
74 if(!strcmp(pdl
->ps_name
, ps_name
))
79 /****************************************************************************
82 static BOOL
is_room_for_font(PSDRV_PDEVICE
*physDev
)
87 /* FIXME: should consider vm usage of each font and available printer memory.
88 For now we allow upto two fonts to be downloaded at a time */
89 for(pdl
= physDev
->downloaded_fonts
; pdl
; pdl
= pdl
->next
)
97 /****************************************************************************
100 * This retrieves the bounding box of the font in font units as well as
101 * the size of the emsquare. To avoid having to worry about mapping mode and
102 * the font size we'll get the data directly from the TrueType HEAD table rather
103 * than using GetOutlineTextMetrics.
105 static BOOL
get_bbox(PSDRV_PDEVICE
*physDev
, RECT
*rc
, UINT
*emsize
)
107 BYTE head
[54]; /* the head table is 54 bytes long */
109 if(GetFontData(physDev
->hdc
, MS_MAKE_TAG('h','e','a','d'), 0, head
,
110 sizeof(head
)) == GDI_ERROR
) {
111 ERR("Can't retrieve head table\n");
114 *emsize
= GET_BE_WORD(head
+ 18); /* unitsPerEm */
115 rc
->left
= (signed short)GET_BE_WORD(head
+ 36); /* xMin */
116 rc
->bottom
= (signed short)GET_BE_WORD(head
+ 38); /* yMin */
117 rc
->right
= (signed short)GET_BE_WORD(head
+ 40); /* xMax */
118 rc
->top
= (signed short)GET_BE_WORD(head
+ 42); /* yMax */
122 /****************************************************************************
123 * PSDRV_SelectDownloadFont
125 * Set up physDev->font for a downloadable font
128 BOOL
PSDRV_SelectDownloadFont(PSDRV_PDEVICE
*physDev
)
131 LPOUTLINETEXTMETRICA potm
;
132 DWORD len
= GetOutlineTextMetricsA(physDev
->hdc
, 0, NULL
);
134 potm
= HeapAlloc(GetProcessHeap(), 0, len
);
135 GetOutlineTextMetricsA(physDev
->hdc
, len
, potm
);
136 get_download_name(physDev
, potm
, &ps_name
);
138 physDev
->font
.fontloc
= Download
;
139 physDev
->font
.fontinfo
.Download
= is_font_downloaded(physDev
, ps_name
);
141 physDev
->font
.size
= abs(PSDRV_YWStoDS(physDev
, /* ppem */
142 potm
->otmTextMetrics
.tmAscent
+
143 potm
->otmTextMetrics
.tmDescent
-
144 potm
->otmTextMetrics
.tmInternalLeading
));
145 physDev
->font
.underlineThickness
= potm
->otmsUnderscoreSize
;
146 physDev
->font
.underlinePosition
= potm
->otmsUnderscorePosition
;
147 physDev
->font
.strikeoutThickness
= potm
->otmsStrikeoutSize
;
148 physDev
->font
.strikeoutPosition
= potm
->otmsStrikeoutPosition
;
150 HeapFree(GetProcessHeap(), 0, ps_name
);
151 HeapFree(GetProcessHeap(), 0, potm
);
155 /****************************************************************************
156 * PSDRV_WriteSetDownloadFont
158 * Write setfont for download font.
161 BOOL
PSDRV_WriteSetDownloadFont(PSDRV_PDEVICE
*physDev
)
164 LPOUTLINETEXTMETRICA potm
;
165 DWORD len
= GetOutlineTextMetricsA(physDev
->hdc
, 0, NULL
);
168 assert(physDev
->font
.fontloc
== Download
);
170 potm
= HeapAlloc(GetProcessHeap(), 0, len
);
171 GetOutlineTextMetricsA(physDev
->hdc
, len
, potm
);
173 get_download_name(physDev
, potm
, &ps_name
);
175 if(physDev
->font
.fontinfo
.Download
== NULL
) {
179 pdl
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*pdl
));
180 pdl
->ps_name
= HeapAlloc(GetProcessHeap(), 0, strlen(ps_name
)+1);
181 strcpy(pdl
->ps_name
, ps_name
);
184 if (!get_bbox(physDev
, &bbox
, &emsize
))
186 if(!is_room_for_font(physDev
))
187 PSDRV_EmptyDownloadList(physDev
, TRUE
);
189 if(physDev
->pi
->ppd
->TTRasterizer
== RO_Type42
) {
190 pdl
->typeinfo
.Type42
= T42_download_header(physDev
, ps_name
, &bbox
, emsize
);
193 if(pdl
->typeinfo
.Type42
== NULL
) {
194 pdl
->typeinfo
.Type1
= T1_download_header(physDev
, ps_name
, &bbox
, emsize
);
197 pdl
->next
= physDev
->downloaded_fonts
;
198 physDev
->downloaded_fonts
= pdl
;
199 physDev
->font
.fontinfo
.Download
= pdl
;
201 if(pdl
->type
== Type42
) {
202 char g_name
[MAX_G_NAME
+ 1];
203 get_glyph_name(physDev
->hdc
, 0, g_name
);
204 T42_download_glyph(physDev
, pdl
, 0, g_name
);
209 PSDRV_WriteSetFont(physDev
, ps_name
, physDev
->font
.size
,
210 physDev
->font
.escapement
);
212 HeapFree(GetProcessHeap(), 0, ps_name
);
213 HeapFree(GetProcessHeap(), 0, potm
);
217 void get_glyph_name(HDC hdc
, WORD index
, char *name
)
220 sprintf(name
, "g%04x", index
);
224 /****************************************************************************
225 * PSDRV_WriteDownloadGlyphShow
227 * Download and write out a number of glyphs
230 BOOL
PSDRV_WriteDownloadGlyphShow(PSDRV_PDEVICE
*physDev
, WORD
*glyphs
,
234 char g_name
[MAX_G_NAME
+ 1];
235 assert(physDev
->font
.fontloc
== Download
);
237 switch(physDev
->font
.fontinfo
.Download
->type
) {
239 for(i
= 0; i
< count
; i
++) {
240 get_glyph_name(physDev
->hdc
, glyphs
[i
], g_name
);
241 T42_download_glyph(physDev
, physDev
->font
.fontinfo
.Download
,
243 PSDRV_WriteGlyphShow(physDev
, g_name
);
248 for(i
= 0; i
< count
; i
++) {
249 get_glyph_name(physDev
->hdc
, glyphs
[i
], g_name
);
250 T1_download_glyph(physDev
, physDev
->font
.fontinfo
.Download
,
252 PSDRV_WriteGlyphShow(physDev
, g_name
);
257 ERR("Type = %d\n", physDev
->font
.fontinfo
.Download
->type
);
263 /****************************************************************************
264 * PSDRV_EmptyDownloadList
266 * Clear the list of downloaded fonts
269 BOOL
PSDRV_EmptyDownloadList(PSDRV_PDEVICE
*physDev
, BOOL write_undef
)
272 static const char undef
[] = "/%s findfont 40 scalefont setfont /%s undefinefont\n";
273 char buf
[sizeof(undef
) + 200];
274 char *default_font
= physDev
->pi
->ppd
->DefaultFont
?
275 physDev
->pi
->ppd
->DefaultFont
: "Courier";
277 if(physDev
->font
.fontloc
== Download
) {
278 physDev
->font
.set
= FALSE
;
279 physDev
->font
.fontinfo
.Download
= NULL
;
282 pdl
= physDev
->downloaded_fonts
;
283 physDev
->downloaded_fonts
= NULL
;
286 sprintf(buf
, undef
, default_font
, pdl
->ps_name
);
287 PSDRV_WriteSpool(physDev
, buf
, strlen(buf
));
292 T42_free(pdl
->typeinfo
.Type42
);
296 T1_free(pdl
->typeinfo
.Type1
);
300 ERR("Type = %d\n", pdl
->type
);
304 HeapFree(GetProcessHeap(), 0, pdl
->ps_name
);
307 HeapFree(GetProcessHeap(), 0, old
);