在QtWebKit中显示阿拉伯字体

has*_*dar 6 fonts qt arabic qtwebkit text-justify

我用QtWebkit编写了一个程序.我在此应用程序中使用了阿拉伯字体 但是如下所示的文本不适用.是否有解决方案来修复它? 在QtWebkit中显示的文本不适用:http://www.shiaupload.ir/images/47343138299124526783.jpg 显示的文字不适用:

这里有一个示例代码

HTML代码:{

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html>
 <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 </head>


<style>
/*Twe Arabic font for test:*/
@font-face {
        font-family: '__me_quran';
        src: url(me_quran.ttf) format('truetype');
    }
@font-face {
        font-family: '__traditionalArabic';
        src: url(trado.ttf) format('truetype');
    }
 #para1
{
 font-family :/*__me_quran*/__traditionalArabic;
 text-align : justify;/*In this project i need justify alinement*/
 direction:rtl;
}


</style>
<script type="text/javascript" >
    var step=1;
    function plusZoom1(){
        document.getElementById("para1").style.zoom = parseFloat(step);
        step +=0.5;
    }

    function minusZoom1(){
        step -=0.5;
        document.getElementById("para1").style.zoom = parseFloat(step);
    }
</script>
<body>
<input type="button" value="+" onclick="plusZoom1();" />
<input type="button" value="-" onclick="minusZoom1();" />
<p id="para1">
       ?????? ???????? ???????????? ??????????? ( 1 )  ?????????? ??????? ????? ?????????????? ( 2 )  ???????????? ??????????? ( 3 )  ??????? ?????? ????????? ( 4 )  ???????? ???????? ?? ???????? ??????????? ( 5 )  ????????? ??????????? ??????????????? ( 6 )  ??????? ?????????? ?????????? ?????????? ?????? ????????????? ?????????? ?? ??? ????????????? ( 7 ) 
</p>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)

}

qt代码:{

#include <QtGui/QApplication>
#include <QWebView>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    QWebView wv;
    wv.setUrl(QUrl::QUrl("qrc:/rc/a.html"));
    wv.show();

    return a.exec();
}
Run Code Online (Sandbox Code Playgroud)

}

Ama*_*man 1

我很久以前就遇到过类似的问题。Qt 没有显示一些应该出现的阿拉伯字符。我不得不更改 Qt 的字体绘制机制并使用“FreeType”字体库来绘制字体。您可以使用 FreeType。更多信息请访问: http: //freetype.sourceforge.net/index2.html

或者您可以使用其他一些图形引擎来绕过 Qt 的绘图 - 它可以显示这些字体。