我用乌尔都语创建了一个 RTL 网站。它还需要“Alvi Nastaleeq”乌尔都语字体才能正确查看。如何检查访问者是否安装了这种字体?如果字体没有找到,则会出现一条消息而不是网站,上面写着“这是完全用乌尔都语编译的网站。要查看它,请安装 Alvi Nastaleeq 字体”。怎么做?
问问题
94 次
1 回答
0
你可以用javascript试试这个: http ://www.kirupa.com/html5/detect_whether_font_is_installed.htm
代码:
//
// Call this function and pass in the name of the font you want to check for availability.
//
function doesFontExist(fontName) {
// creating our in-memory Canvas element where the magic happens
var canvas = document.createElement("canvas");
var context = canvas.getContext("2d");
// the text whose final pixel size I want to measure
var text = "abcdefghijklmnopqrstuvwxyz0123456789";
// specifying the baseline font
context.font = "72px monospace";
// checking the size of the baseline text
var baselineSize = context.measureText(text).width;
// specifying the font whose existence we want to check
context.font = "72px '" + fontName + "', monospace";
// checking the size of the font we want to check
var newSize = context.measureText(text).width;
// removing the Canvas element we created
delete canvas;
//
// If the size of the two text instances is the same, the font does not exist because it is being rendered
// using the default sans-serif font
//
if (newSize == baselineSize) {
return false;
} else {
return true;
}
}
doesFontExist("Comic Sans MS");
于 2013-04-26T17:50:02.847 回答