pb630b4 x64 windows
See under:
Code: Select all
If OpenWindow(0, 0, 0, 400, 200, "VectorDrawing", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
CanvasGadget(0, 0, 0, 400, 200)
LoadFont(0, "", 11)
font=GetGadgetFont(#PB_Default)
If StartVectorDrawing(CanvasVectorOutput(0))
VectorSourceColor(RGBA(0, 0, 0, 180))
Text$ = "ÎÇ"
VectorFont(FontID(0))
Debug VectorTextHeight(Text$, #PB_VectorText_Visible | #PB_VectorText_Offset)
VectorFont(font)
Debug VectorTextHeight(Text$, #PB_VectorText_Visible | #PB_VectorText_Offset)
;===>big difference (not due to the size), and also, with pb602x86 32b, i've got 0.0
StopVectorDrawing()
EndIf
Repeat
Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindow
EndIf

