Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.15.7, 6.4.3, 6.5.0
-
None
Description
Emoji like these below:
π©π»βπ€βπ©πΌΒ Β Β π©π½ββ€οΈβπ¨π»
code:
QImage img(100, 100);
QPainter painter(&image);
QFont font("Apple Color Emoji");
font.setPixelSize(16);
painter.setFont(font);
painter.drawText(img.rect(), Qt::AlignCenter, "π©π½ββ€οΈβπ¨π»")
//orΒ
//painter.drawText(img.rect(), Qt::AlignCenter, "π©π»βπ€βπ©πΌ ")
Β
correct display (in mac own APP)
incorrect display(draw by QPainter)
a large space will exist between emoji component.
Β