2 * Unit test suite for fonts
4 * Copyright (C) 2007 Google (Evan Stade)
5 * Copyright (C) 2012 Dmitry Timoshkov
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/test.h"
28 #define expect(expected, got) ok(got == expected, "Expected %d, got %d\n", expected, got)
29 #define expectf(expected, got) ok(fabs(expected - got) < 0.0001, "Expected %f, got %f\n", expected, got)
31 static const WCHAR nonexistent[] = {'T','h','i','s','F','o','n','t','s','h','o','u','l','d','N','o','t','E','x','i','s','t','\0'};
32 static const WCHAR MSSansSerif[] = {'M','S',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
33 static const WCHAR MicrosoftSansSerif[] = {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
34 static const WCHAR TimesNewRoman[] = {'T','i','m','e','s',' ','N','e','w',' ','R','o','m','a','n','\0'};
35 static const WCHAR CourierNew[] = {'C','o','u','r','i','e','r',' ','N','e','w','\0'};
36 static const WCHAR Tahoma[] = {'T','a','h','o','m','a',0};
37 static const WCHAR LiberationSerif[] = {'L','i','b','e','r','a','t','i','o','n',' ','S','e','r','i','f',0};
39 static void test_createfont(void)
41 GpFontFamily* fontfamily = NULL, *fontfamily2;
47 WCHAR familyname[LF_FACESIZE];
49 stat = GdipCreateFontFamilyFromName(nonexistent, NULL, &fontfamily);
50 expect (FontFamilyNotFound, stat);
51 stat = GdipDeleteFont(font);
52 expect (InvalidParameter, stat);
53 stat = GdipCreateFontFamilyFromName(Tahoma, NULL, &fontfamily);
55 stat = GdipCreateFont(fontfamily, 12, FontStyleRegular, UnitPoint, &font);
57 stat = GdipGetFontUnit (font, &unit);
59 expect (UnitPoint, unit);
61 stat = GdipGetFamily(font, &fontfamily2);
63 stat = GdipGetFamilyName(fontfamily2, familyname, 0);
65 ok (lstrcmpiW(Tahoma, familyname) == 0, "Expected Tahoma, got %s\n",
66 wine_dbgstr_w(familyname));
67 stat = GdipDeleteFontFamily(fontfamily2);
70 /* Test to see if returned size is based on unit (its not) */
71 GdipGetFontSize(font, &size);
72 ok (size == 12, "Expected 12, got %f\n", size);
75 /* Make sure everything is converted correctly for all Units */
76 for (i = UnitWorld; i <=UnitMillimeter; i++)
78 if (i == UnitDisplay) continue; /* Crashes WindowsXP, wtf? */
79 GdipCreateFont(fontfamily, 24, FontStyleRegular, i, &font);
80 GdipGetFontSize (font, &size);
81 ok (size == 24, "Expected 24, got %f (with unit: %d)\n", size, i);
82 GdipGetFontUnit (font, &unit);
87 GdipDeleteFontFamily(fontfamily);
90 static void test_logfont(void)
100 UINT16 em_height, line_spacing;
103 GdipCreateFromHDC(hdc, &graphics);
105 memset(&lfa, 0, sizeof(LOGFONTA));
106 memset(&lfa2, 0xff, sizeof(LOGFONTA));
109 lfa.lfFaceName[0] = 0;
110 stat = GdipCreateFontFromLogfontA(hdc, &lfa, &font);
111 expect(NotTrueTypeFont, stat);
113 lstrcpyA(lfa.lfFaceName, "Tahoma");
115 stat = GdipCreateFontFromLogfontA(hdc, &lfa, &font);
117 stat = GdipGetLogFontA(font, graphics, &lfa2);
120 ok(lfa2.lfHeight < 0, "Expected negative height\n");
121 expect(0, lfa2.lfWidth);
122 expect(0, lfa2.lfEscapement);
123 expect(0, lfa2.lfOrientation);
124 ok((lfa2.lfWeight >= 100) && (lfa2.lfWeight <= 900), "Expected weight to be set\n");
125 expect(0, lfa2.lfItalic);
126 expect(0, lfa2.lfUnderline);
127 expect(0, lfa2.lfStrikeOut);
128 ok(lfa2.lfCharSet == GetTextCharset(hdc) || lfa2.lfCharSet == ANSI_CHARSET,
129 "Expected %x or %x, got %x\n", GetTextCharset(hdc), ANSI_CHARSET, lfa2.lfCharSet);
130 expect(0, lfa2.lfOutPrecision);
131 expect(0, lfa2.lfClipPrecision);
132 expect(0, lfa2.lfQuality);
133 expect(0, lfa2.lfPitchAndFamily);
135 GdipDeleteFont(font);
137 memset(&lfa, 0, sizeof(LOGFONTA));
140 lfa.lfEscapement = lfa.lfOrientation = 50;
141 lfa.lfItalic = lfa.lfUnderline = lfa.lfStrikeOut = TRUE;
143 memset(&lfa2, 0xff, sizeof(LOGFONTA));
144 lstrcpyA(lfa.lfFaceName, "Tahoma");
146 stat = GdipCreateFontFromLogfontA(hdc, &lfa, &font);
148 stat = GdipGetLogFontA(font, graphics, &lfa2);
151 ok(lfa2.lfHeight < 0, "Expected negative height\n");
152 expect(0, lfa2.lfWidth);
153 expect(0, lfa2.lfEscapement);
154 expect(0, lfa2.lfOrientation);
155 ok((lfa2.lfWeight >= 100) && (lfa2.lfWeight <= 900), "Expected weight to be set\n");
156 expect(TRUE, lfa2.lfItalic);
157 expect(TRUE, lfa2.lfUnderline);
158 expect(TRUE, lfa2.lfStrikeOut);
159 ok(lfa2.lfCharSet == GetTextCharset(hdc) || lfa2.lfCharSet == ANSI_CHARSET,
160 "Expected %x or %x, got %x\n", GetTextCharset(hdc), ANSI_CHARSET, lfa2.lfCharSet);
161 expect(0, lfa2.lfOutPrecision);
162 expect(0, lfa2.lfClipPrecision);
163 expect(0, lfa2.lfQuality);
164 expect(0, lfa2.lfPitchAndFamily);
166 stat = GdipGetFontStyle(font, &style);
168 ok (style == (FontStyleItalic | FontStyleUnderline | FontStyleStrikeout),
169 "Expected , got %d\n", style);
171 stat = GdipGetFontUnit(font, &unit);
173 expect(UnitWorld, unit);
175 stat = GdipGetFontHeight(font, graphics, &rval);
177 expectf(25.347656, rval);
178 stat = GdipGetFontSize(font, &rval);
182 stat = GdipGetFamily(font, &family);
184 stat = GdipGetEmHeight(family, FontStyleRegular, &em_height);
186 expect(2048, em_height);
187 stat = GdipGetLineSpacing(family, FontStyleRegular, &line_spacing);
189 expect(2472, line_spacing);
190 GdipDeleteFontFamily(family);
192 GdipDeleteFont(font);
194 memset(&lfa, 0, sizeof(lfa));
196 lstrcpyA(lfa.lfFaceName, "Tahoma");
197 stat = GdipCreateFontFromLogfontA(hdc, &lfa, &font);
199 memset(&lfa2, 0xff, sizeof(lfa2));
200 stat = GdipGetLogFontA(font, graphics, &lfa2);
202 expect(lfa.lfHeight, lfa2.lfHeight);
204 stat = GdipGetFontUnit(font, &unit);
206 expect(UnitWorld, unit);
208 stat = GdipGetFontHeight(font, graphics, &rval);
210 expectf(30.175781, rval);
211 stat = GdipGetFontSize(font, &rval);
215 stat = GdipGetFamily(font, &family);
217 stat = GdipGetEmHeight(family, FontStyleRegular, &em_height);
219 expect(2048, em_height);
220 stat = GdipGetLineSpacing(family, FontStyleRegular, &line_spacing);
222 expect(2472, line_spacing);
223 GdipDeleteFontFamily(family);
225 GdipDeleteFont(font);
227 GdipDeleteGraphics(graphics);
231 static void test_fontfamily (void)
233 GpFontFamily *family, *clonedFontFamily;
234 WCHAR itsName[LF_FACESIZE];
237 /* FontFamily cannot be NULL */
238 stat = GdipCreateFontFamilyFromName (Tahoma , NULL, NULL);
239 expect (InvalidParameter, stat);
241 /* FontFamily must be able to actually find the family.
242 * If it can't, any subsequent calls should fail.
244 stat = GdipCreateFontFamilyFromName (nonexistent, NULL, &family);
245 expect (FontFamilyNotFound, stat);
247 /* Bitmap fonts are not found */
248 stat = GdipCreateFontFamilyFromName (MSSansSerif, NULL, &family);
249 expect (FontFamilyNotFound, stat);
250 if(stat == Ok) GdipDeleteFontFamily(family);
252 stat = GdipCreateFontFamilyFromName (Tahoma, NULL, &family);
255 stat = GdipGetFamilyName (family, itsName, LANG_NEUTRAL);
257 expect (0, lstrcmpiW(itsName, Tahoma));
261 /* Crashes on Windows XP SP2, Vista, and so Wine as well */
262 stat = GdipGetFamilyName (family, NULL, LANG_NEUTRAL);
266 /* Make sure we don't read old data */
267 ZeroMemory (itsName, sizeof(itsName));
268 stat = GdipCloneFontFamily(family, &clonedFontFamily);
270 GdipDeleteFontFamily(family);
271 stat = GdipGetFamilyName(clonedFontFamily, itsName, LANG_NEUTRAL);
273 expect(0, lstrcmpiW(itsName, Tahoma));
275 GdipDeleteFontFamily(clonedFontFamily);
278 static void test_fontfamily_properties (void)
280 GpFontFamily* FontFamily = NULL;
284 stat = GdipCreateFontFamilyFromName(Tahoma, NULL, &FontFamily);
287 stat = GdipGetLineSpacing(FontFamily, FontStyleRegular, &result);
289 ok (result == 2472, "Expected 2472, got %d\n", result);
291 stat = GdipGetEmHeight(FontFamily, FontStyleRegular, &result);
293 ok(result == 2048, "Expected 2048, got %d\n", result);
295 stat = GdipGetCellAscent(FontFamily, FontStyleRegular, &result);
297 ok(result == 2049, "Expected 2049, got %d\n", result);
299 stat = GdipGetCellDescent(FontFamily, FontStyleRegular, &result);
301 ok(result == 423, "Expected 423, got %d\n", result);
302 GdipDeleteFontFamily(FontFamily);
304 stat = GdipCreateFontFamilyFromName(TimesNewRoman, NULL, &FontFamily);
305 if(stat == FontFamilyNotFound)
306 skip("Times New Roman not installed\n");
310 stat = GdipGetLineSpacing(FontFamily, FontStyleRegular, &result);
312 ok(result == 2355, "Expected 2355, got %d\n", result);
314 stat = GdipGetEmHeight(FontFamily, FontStyleRegular, &result);
316 ok(result == 2048, "Expected 2048, got %d\n", result);
318 stat = GdipGetCellAscent(FontFamily, FontStyleRegular, &result);
320 ok(result == 1825, "Expected 1825, got %d\n", result);
322 stat = GdipGetCellDescent(FontFamily, FontStyleRegular, &result);
324 ok(result == 443, "Expected 443 got %d\n", result);
325 GdipDeleteFontFamily(FontFamily);
329 static void check_family(const char* context, GpFontFamily *family, WCHAR *name)
335 stat = GdipGetFamilyName(family, name, LANG_NEUTRAL);
336 ok(stat == Ok, "could not get the %s family name: %.8x\n", context, stat);
338 stat = GdipCreateFont(family, 12, FontStyleRegular, UnitPixel, &font);
339 ok(stat == Ok, "could not create a font for the %s family: %.8x\n", context, stat);
342 stat = GdipDeleteFont(font);
343 ok(stat == Ok, "could not delete the %s family font: %.8x\n", context, stat);
346 stat = GdipDeleteFontFamily(family);
347 ok(stat == Ok, "could not delete the %s family: %.8x\n", context, stat);
350 static void test_getgenerics (void)
353 GpFontFamily *family;
354 WCHAR sansname[LF_FACESIZE], serifname[LF_FACESIZE], mononame[LF_FACESIZE];
355 int missingfonts = 0;
357 stat = GdipGetGenericFontFamilySansSerif(&family);
359 if (stat == FontFamilyNotFound)
362 check_family("Sans Serif", family, sansname);
364 stat = GdipGetGenericFontFamilySerif(&family);
366 if (stat == FontFamilyNotFound)
369 check_family("Serif", family, serifname);
371 stat = GdipGetGenericFontFamilyMonospace(&family);
373 if (stat == FontFamilyNotFound)
376 check_family("Monospace", family, mononame);
378 if (missingfonts && strcmp(winetest_platform, "wine") == 0)
379 trace("You may need to install either the Microsoft Web Fonts or the Liberation Fonts\n");
381 /* Check that the family names are all different */
382 ok(lstrcmpiW(sansname, serifname) != 0, "Sans Serif and Serif families should be different: %s\n", wine_dbgstr_w(sansname));
383 ok(lstrcmpiW(sansname, mononame) != 0, "Sans Serif and Monospace families should be different: %s\n", wine_dbgstr_w(sansname));
384 ok(lstrcmpiW(serifname, mononame) != 0, "Serif and Monospace families should be different: %s\n", wine_dbgstr_w(serifname));
387 static void test_installedfonts (void)
390 GpFontCollection* collection=NULL;
392 stat = GdipNewInstalledFontCollection(NULL);
393 expect (InvalidParameter, stat);
395 stat = GdipNewInstalledFontCollection(&collection);
397 ok (collection != NULL, "got NULL font collection\n");
400 static void test_heightgivendpi(void)
404 GpFontFamily* fontfamily = NULL;
408 stat = GdipCreateFontFamilyFromName(Tahoma, NULL, &fontfamily);
411 stat = GdipCreateFont(fontfamily, 30, FontStyleRegular, UnitPixel, &font);
414 stat = GdipGetFontHeightGivenDPI(NULL, 96, &height);
415 expect(InvalidParameter, stat);
417 stat = GdipGetFontHeightGivenDPI(font, 96, NULL);
418 expect(InvalidParameter, stat);
420 stat = GdipGetFontHeightGivenDPI(font, 96, &height);
422 expectf(36.210938, height);
423 GdipDeleteFont(font);
426 stat = GdipCreateFont(fontfamily, 30, FontStyleRegular, UnitWorld, &font);
429 stat = GdipGetFontUnit(font, &unit);
431 expect(UnitWorld, unit);
433 stat = GdipGetFontHeightGivenDPI(font, 96, &height);
435 expectf(36.210938, height);
436 GdipDeleteFont(font);
439 stat = GdipCreateFont(fontfamily, 30, FontStyleRegular, UnitPoint, &font);
441 stat = GdipGetFontHeightGivenDPI(font, 96, &height);
443 expectf(48.281250, height);
444 GdipDeleteFont(font);
447 stat = GdipCreateFont(fontfamily, 30, FontStyleRegular, UnitInch, &font);
450 stat = GdipGetFontUnit(font, &unit);
452 expect(UnitInch, unit);
454 stat = GdipGetFontHeightGivenDPI(font, 96, &height);
456 expectf(3476.250000, height);
457 GdipDeleteFont(font);
460 stat = GdipCreateFont(fontfamily, 30, FontStyleRegular, UnitDocument, &font);
463 stat = GdipGetFontUnit(font, &unit);
465 expect(UnitDocument, unit);
467 stat = GdipGetFontHeightGivenDPI(font, 96, &height);
469 expectf(11.587500, height);
470 GdipDeleteFont(font);
473 stat = GdipCreateFont(fontfamily, 30, FontStyleRegular, UnitMillimeter, &font);
476 stat = GdipGetFontUnit(font, &unit);
478 expect(UnitMillimeter, unit);
480 stat = GdipGetFontHeightGivenDPI(font, 96, &height);
482 expectf(136.860245, height);
483 GdipDeleteFont(font);
485 GdipDeleteFontFamily(fontfamily);
488 static int CALLBACK font_enum_proc(const LOGFONTW *lfe, const TEXTMETRICW *ntme,
489 DWORD type, LPARAM lparam)
491 NEWTEXTMETRICW *ntm = (NEWTEXTMETRICW *)lparam;
493 if (type != TRUETYPE_FONTTYPE) return 1;
495 *ntm = *(NEWTEXTMETRICW *)ntme;
501 UINT16 em_height, line_spacing, ascent, descent;
502 REAL font_height, font_size;
506 static void gdi_get_font_metrics(LOGFONTW *lf, struct font_metrics *fm)
511 OUTLINETEXTMETRICW otm;
514 hdc = CreateCompatibleDC(0);
516 /* it's the only way to get extended NEWTEXTMETRIC fields */
517 ret = EnumFontFamiliesExW(hdc, lf, font_enum_proc, (LPARAM)&ntm, 0);
518 ok(!ret, "EnumFontFamiliesExW failed to find %s\n", wine_dbgstr_w(lf->lfFaceName));
520 hfont = CreateFontIndirectW(lf);
521 SelectObject(hdc, hfont);
523 otm.otmSize = sizeof(otm);
524 ret = GetOutlineTextMetricsW(hdc, otm.otmSize, &otm);
525 ok(ret, "GetOutlineTextMetrics failed\n");
530 fm->lfHeight = -otm.otmTextMetrics.tmAscent;
531 fm->line_spacing = ntm.ntmCellHeight;
532 fm->font_size = (REAL)otm.otmTextMetrics.tmAscent;
533 fm->font_height = (REAL)fm->line_spacing * fm->font_size / (REAL)ntm.ntmSizeEM;
534 fm->em_height = ntm.ntmSizeEM;
535 fm->ascent = ntm.ntmSizeEM;
536 fm->descent = ntm.ntmCellHeight - ntm.ntmSizeEM;
539 static void gdip_get_font_metrics(GpFont *font, struct font_metrics *fm)
542 GpFontFamily *family;
545 stat = GdipGetFontStyle(font, &style);
548 stat = GdipGetFontHeight(font, NULL, &fm->font_height);
550 stat = GdipGetFontSize(font, &fm->font_size);
553 fm->lfHeight = (INT)(fm->font_size * -1.0);
555 stat = GdipGetFamily(font, &family);
558 stat = GdipGetEmHeight(family, style, &fm->em_height);
560 stat = GdipGetLineSpacing(family, style, &fm->line_spacing);
562 stat = GdipGetCellAscent(family, style, &fm->ascent);
564 stat = GdipGetCellDescent(family, style, &fm->descent);
567 GdipDeleteFontFamily(family);
570 static void cmp_font_metrics(struct font_metrics *fm1, struct font_metrics *fm2, int line)
572 ok_(__FILE__, line)(fm1->lfHeight == fm2->lfHeight, "lfHeight %d != %d\n", fm1->lfHeight, fm2->lfHeight);
573 ok_(__FILE__, line)(fm1->em_height == fm2->em_height, "em_height %u != %u\n", fm1->em_height, fm2->em_height);
574 ok_(__FILE__, line)(fm1->line_spacing == fm2->line_spacing, "line_spacing %u != %u\n", fm1->line_spacing, fm2->line_spacing);
575 ok_(__FILE__, line)(abs(fm1->ascent - fm2->ascent) <= 1, "ascent %u != %u\n", fm1->ascent, fm2->ascent);
576 ok_(__FILE__, line)(abs(fm1->descent - fm2->descent) <= 1, "descent %u != %u\n", fm1->descent, fm2->descent);
577 ok(fm1->font_height > 0.0, "fm1->font_height should be positive, got %f\n", fm1->font_height);
578 ok(fm2->font_height > 0.0, "fm2->font_height should be positive, got %f\n", fm2->font_height);
579 ok_(__FILE__, line)(fm1->font_height == fm2->font_height, "font_height %f != %f\n", fm1->font_height, fm2->font_height);
580 ok(fm1->font_size > 0.0, "fm1->font_size should be positive, got %f\n", fm1->font_size);
581 ok(fm2->font_size > 0.0, "fm2->font_size should be positive, got %f\n", fm2->font_size);
582 ok_(__FILE__, line)(fm1->font_size == fm2->font_size, "font_size %f != %f\n", fm1->font_size, fm2->font_size);
585 static void test_font_metrics(void)
589 GpFontFamily *family;
590 GpGraphics *graphics;
593 struct font_metrics fm_gdi, fm_gdip;
596 hdc = CreateCompatibleDC(0);
597 stat = GdipCreateFromHDC(hdc, &graphics);
600 memset(&lf, 0, sizeof(lf));
603 lstrcpyW(lf.lfFaceName, Tahoma);
605 stat = GdipCreateFontFromLogfontW(hdc, &lf, &font);
608 stat = GdipGetFontUnit(font, &unit);
610 expect(UnitWorld, unit);
612 gdip_get_font_metrics(font, &fm_gdip);
614 trace("%s,%d: EmHeight %u, LineSpacing %u, CellAscent %u, CellDescent %u, FontHeight %f, FontSize %f\n",
615 wine_dbgstr_w(lf.lfFaceName), lf.lfHeight,
616 fm_gdip.em_height, fm_gdip.line_spacing, fm_gdip.ascent, fm_gdip.descent,
617 fm_gdip.font_height, fm_gdip.font_size);
619 gdi_get_font_metrics(&lf, &fm_gdi);
621 trace("%s,%d: EmHeight %u, LineSpacing %u, CellAscent %u, CellDescent %u, FontHeight %f, FontSize %f\n",
622 wine_dbgstr_w(lf.lfFaceName), lf.lfHeight,
623 fm_gdi.em_height, fm_gdi.line_spacing, fm_gdi.ascent, fm_gdi.descent,
624 fm_gdi.font_height, fm_gdi.font_size);
626 cmp_font_metrics(&fm_gdip, &fm_gdi, __LINE__);
628 stat = GdipGetLogFontW(font, graphics, &lf);
630 ok(lf.lfHeight < 0, "lf.lfHeight should be negative, got %d\n", lf.lfHeight);
631 gdi_get_font_metrics(&lf, &fm_gdi);
633 trace("%s,%d: EmHeight %u, LineSpacing %u, CellAscent %u, CellDescent %u, FontHeight %f, FontSize %f\n",
634 wine_dbgstr_w(lf.lfFaceName), lf.lfHeight,
635 fm_gdi.em_height, fm_gdi.line_spacing, fm_gdi.ascent, fm_gdi.descent,
636 fm_gdi.font_height, fm_gdi.font_size);
637 ok((REAL)lf.lfHeight * -1.0 == fm_gdi.font_size, "expected %f, got %f\n", (REAL)lf.lfHeight * -1.0, fm_gdi.font_size);
639 cmp_font_metrics(&fm_gdip, &fm_gdi, __LINE__);
641 GdipDeleteFont(font);
644 lstrcpyW(lf.lfFaceName, Tahoma);
646 stat = GdipCreateFontFromLogfontW(hdc, &lf, &font);
649 stat = GdipGetFontUnit(font, &unit);
651 expect(UnitWorld, unit);
653 gdip_get_font_metrics(font, &fm_gdip);
655 trace("%s,%d: EmHeight %u, LineSpacing %u, CellAscent %u, CellDescent %u, FontHeight %f, FontSize %f\n",
656 wine_dbgstr_w(lf.lfFaceName), lf.lfHeight,
657 fm_gdip.em_height, fm_gdip.line_spacing, fm_gdip.ascent, fm_gdip.descent,
658 fm_gdip.font_height, fm_gdip.font_size);
660 gdi_get_font_metrics(&lf, &fm_gdi);
662 trace("%s,%d: EmHeight %u, LineSpacing %u, CellAscent %u, CellDescent %u, FontHeight %f, FontSize %f\n",
663 wine_dbgstr_w(lf.lfFaceName), lf.lfHeight,
664 fm_gdi.em_height, fm_gdi.line_spacing, fm_gdi.ascent, fm_gdi.descent,
665 fm_gdi.font_height, fm_gdi.font_size);
667 cmp_font_metrics(&fm_gdip, &fm_gdi, __LINE__);
669 stat = GdipGetLogFontW(font, graphics, &lf);
671 ok(lf.lfHeight < 0, "lf.lfHeight should be negative, got %d\n", lf.lfHeight);
672 gdi_get_font_metrics(&lf, &fm_gdi);
674 trace("%s,%d: EmHeight %u, LineSpacing %u, CellAscent %u, CellDescent %u, FontHeight %f, FontSize %f\n",
675 wine_dbgstr_w(lf.lfFaceName), lf.lfHeight,
676 fm_gdi.em_height, fm_gdi.line_spacing, fm_gdi.ascent, fm_gdi.descent,
677 fm_gdi.font_height, fm_gdi.font_size);
678 ok((REAL)lf.lfHeight * -1.0 == fm_gdi.font_size, "expected %f, got %f\n", (REAL)lf.lfHeight * -1.0, fm_gdi.font_size);
680 cmp_font_metrics(&fm_gdip, &fm_gdi, __LINE__);
682 GdipDeleteFont(font);
684 stat = GdipCreateFontFamilyFromName(Tahoma, NULL, &family);
688 stat = GdipCreateFont(family, 13.0, FontStyleRegular, UnitPixel, &font);
691 gdip_get_font_metrics(font, &fm_gdip);
693 trace("%s,%d: EmHeight %u, LineSpacing %u, CellAscent %u, CellDescent %u, FontHeight %f, FontSize %f\n",
694 wine_dbgstr_w(lf.lfFaceName), lf.lfHeight,
695 fm_gdip.em_height, fm_gdip.line_spacing, fm_gdip.ascent, fm_gdip.descent,
696 fm_gdip.font_height, fm_gdip.font_size);
698 stat = GdipGetLogFontW(font, graphics, &lf);
700 ok(lf.lfHeight < 0, "lf.lfHeight should be negative, got %d\n", lf.lfHeight);
701 gdi_get_font_metrics(&lf, &fm_gdi);
703 trace("%s,%d: EmHeight %u, LineSpacing %u, CellAscent %u, CellDescent %u, FontHeight %f, FontSize %f\n",
704 wine_dbgstr_w(lf.lfFaceName), lf.lfHeight,
705 fm_gdi.em_height, fm_gdi.line_spacing, fm_gdi.ascent, fm_gdi.descent,
706 fm_gdi.font_height, fm_gdi.font_size);
707 ok((REAL)lf.lfHeight * -1.0 == fm_gdi.font_size, "expected %f, got %f\n", (REAL)lf.lfHeight * -1.0, fm_gdi.font_size);
709 cmp_font_metrics(&fm_gdip, &fm_gdi, __LINE__);
711 stat = GdipGetLogFontW(font, NULL, &lf);
712 expect(InvalidParameter, stat);
714 GdipDeleteFont(font);
716 stat = GdipCreateFont(family, -13.0, FontStyleRegular, UnitPixel, &font);
717 expect(InvalidParameter, stat);
719 GdipDeleteFontFamily(family);
721 GdipDeleteGraphics(graphics);
727 struct GdiplusStartupInput gdiplusStartupInput;
728 ULONG_PTR gdiplusToken;
730 gdiplusStartupInput.GdiplusVersion = 1;
731 gdiplusStartupInput.DebugEventCallback = NULL;
732 gdiplusStartupInput.SuppressBackgroundThread = 0;
733 gdiplusStartupInput.SuppressExternalCodecs = 0;
735 GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
741 test_fontfamily_properties();
743 test_installedfonts();
744 test_heightgivendpi();
746 GdiplusShutdown(gdiplusToken);