I tested on WinXP-32 and Win7-64, and i tested with and without ClearType on, and i tested it with several different fonts - Arial, Times New Roman, Courier New, and i zoomed in with Photoshop for confirmation
but not in any test was there ever a difference, as you can see from the screenshot. So am i missing something here? just my (two) systems perhaps? all four of these texts should be slightly different -
Code: Select all
FontNormal = LoadFont(#PB_Any, "Arial", 14, #PB_Font_Bold)
FontQuality = LoadFont(#PB_Any, "Arial", 14, #PB_Font_Bold | #PB_Font_HighQuality)
OpenWindow(0, 0, 0, 440, 120, "Test #PB_Font_HighQuality", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
CanvasGadget(0, 0, 0, 440, 120)
Text$ = "The quick brown fox jumped over the lazy dog"
;DRAWTEXT()
If StartDrawing(CanvasOutput(0))
DrawingMode(#PB_2DDrawing_Transparent)
DrawingFont(FontID(FontNormal))
DrawText(5,1,Text$,RGB(0,0,0))
DrawingFont(FontID(FontQuality))
DrawText(5,31,Text$,RGB(0,0,0))
StopDrawing()
EndIf
;DRAWVECTORTEXT()
If StartVectorDrawing(CanvasVectorOutput(0))
VectorFont(FontID(FontNormal))
MovePathCursor(5,61)
DrawVectorText(Text$)
VectorFont(FontID(FontQuality))
MovePathCursor(5,91)
DrawVectorText(Text$)
StopVectorDrawing()
EndIf
Repeat
Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindow
