svnno****@sourc*****
svnno****@sourc*****
2009年 10月 21日 (水) 22:34:15 JST
Revision: 1352 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1352 Author: dhrname Date: 2009-10-21 22:34:15 +0900 (Wed, 21 Oct 2009) Log Message: ----------- Modified Paths: -------------- branches/05x/052/sie.js Modified: branches/05x/052/sie.js =================================================================== --- branches/05x/052/sie.js 2009-10-20 14:41:52 UTC (rev 1351) +++ branches/05x/052/sie.js 2009-10-21 13:34:15 UTC (rev 1352) @@ -1847,6 +1847,9 @@ //Text2SVG機能。SVGのソース(文章)をSVG画像に変換できる。(必須ではない) function textToSVG( /*string*/ source, /*float*/ w, /*float*/ h) { + /*Safari3.xでは、DOMParser方式だと、文字が表示されないバグがあるため、 + *dataスキーム方式を採用する + */ if (navigator.userAgent.indexOf('WebKit') > -1 || navigator.userAgent.indexOf('Safari') > -1) { //WebKit系ならば var data = 'data:image/svg+xml;charset=utf-8,' + unescapeUTF16(escape(source)); var ob = document.createElement("object");