Wish No anti alias option on B4XCanvas

wimpie3

Well-Known Member
Licensed User
Longtime User
Currently B4XCanvas uses anti aliasing.

This poses problems if you need pixel perfect drawings and fonts. I have a font that contains special characters and I want to measure and print a string from that font without having an anti alias effect.

Could you add an option to deactivate anti aliasing on B4XCanvas to be able to use MeasureFont and DrawText without extra pixels added by the anti aliasing?

Just to be clear: I need this for all platforms. Thanks!
 

wimpie3

Well-Known Member
Licensed User
Longtime User
I've tried going this way:
B4X:
Dim cv As Canvas = GetNativeCanvas(MyCanvas) ' MyCanvas is a B4XCanvas
cv.AntiAlias=False

Sub GetNativeCanvas (b4x As B4XCanvas) As Canvas
    Dim jo As JavaObject = b4x
    jo = jo.GetFieldJO("cvs")
    If xui.IsB4J Then Return jo.RunMethod("getObject", Null)
    Return jo
End Sub

But the text is still drawn using anti aliasing:
100.png

(and on B4J I get Unknown member: antialias)
 
Top