I have found that my fonts look rougher. Is there a setting I can change in 4.51 to make
the fonts look as smooth as they were in 4.31 ?
I'm running XP SP2 32bit.
The same code was used in both versions (with just the version no changed).
Thanks.
Code: Select all
EnableExplicit
Define event,img,xPos
InitSprite()
OpenWindow(0,100,100,800,300,"XP - PB v4.51")
OpenWindowedScreen(WindowID(0),0,0,800,300,0,0,0)
img = CreateImage(#PB_Any,800,300)
LoadFont(1,"Times New Roman",200)
LoadFont(2,"Times New Roman",60)
StartDrawing(ImageOutput(img))
DrawingFont(FontID(1))
Box(0,0,800,300,#White)
xPos = DrawText(60,0,"XP",#Black,#White )
DrawingFont(FontID(2))
DrawText(xPos,110," - PB v4.51",#Black,#White)
StopDrawing()
Repeat
StartDrawing(ScreenOutput())
DrawImage(ImageID(img),0,0)
StopDrawing()
FlipBuffers()
event = WaitWindowEvent(1)
Until event = #PB_Event_CloseWindow
