Hi,

I'm having problem with the font in iOS which seems to be pixelated or garbled.
However it displayed perfectly in Android.

The font was set using the following properties in qml file:

Qt Code:
  1. font {
  2. pixelSize: 30
  3. fontFamily: "Arial"
  4. }
To copy to clipboard, switch view to plain text mode 

I already tried removing the aliases using the following properties but to no avail.

setStyleStrategy(QFont::NoAntialias);
setStyleStrategy(QFont::NoSubpixelAntialias);


And

setRenderHint(QPainter::Antialiasing, true);


TIA.