簡體   English   中英

文本無法在html5畫布中呈現-IE7和8(fabric.js)

[英]Text not rendering in html5 canvas - IE7 & 8 (fabric.js)

我正在使用canvas, Fabric.js庫和IE canvas修復程序(excanvas.js)在圖像上生成一些可編輯的彎曲文本,但該文本似乎在IE7和8中根本無法呈現。

http://explorercanvas.googlecode.com/svn/trunk/excanvas.js

這是一個完全使用IE7和8的畫布使用文本的已知問題,還是我可以使用js修復程序來使其正常工作?

這是一些使用curvedText示例的修改后的代碼,可在此處找到: http : //jsfiddle.net/EffEPi/qpJTz/

HTML和CSS

<style type="text/css">
body{
font-family: Helvetica;
font-weight: normal;
font-size: 13px;
}
.canvas-box{
clear: both;
position: relative;
width: 740px;
height: 700px;
margin: auto;
}
.canvas-box .canvas-nav{
width: 200px;
height: 462px;
float: left;
position: relative;
background: #E9E9E9;
padding: 20px;
}
.canvas-box .canvas-wrap{
float: left;
position: relative;
}
</style>

<div class="canvas-box">
<div class="canvas-wrap">
<canvas id="c" width="500" height="500" style="border:1px solid #E9E9E9;"></canvas><br/>
</div>
<div class="canvas-nav">
<input type="text" id="text" value="Enter Your Name" maxlength="20" /><br>
Radius : <input type="range"  min="0" max="100" value="50" id="radius" /><br>
Spacing : <input type="range"  min="5" max="40" value="20" id="spacing" /><br>
<button id="save_img">Save Image</button>
</div>
</div>
<div class="show_img"></div>

JS

<script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'></script>
<!--[if IE]><script type="text/javascript" src="http://explorercanvas.googlecode.com/svn/trunk/excanvas.js"></script><![endif]-->
<script type='text/javascript' src="http://cdnjs.cloudflare.com/ajax/libs/fabric.js/1.2.0/fabric.all.min.js"></script>
<script type='text/javascript' src="https://rawgithub.com/EffEPi/fabric.curvedText/master/fabric.curvedText.js"></script>
<script type='text/javascript'>//<![CDATA[ 
$(window).load(function(){
var CurvedTextWidth = 0;
canvas = new fabric.Canvas('c');
var circle = new fabric.Circle({
radius: 100, fill: 'blue', left: $("#c").width() / 2, top: $("#c").height() / 2, selectable: false
});
canvas.add(circle);
canvas.on('selection:cleared', onDeSelected);
canvas.on('object:selected', onSelected);
canvas.on('selection:created', onSelected);

var CurvedText = new fabric.CurvedText($('#text').val(),{
left: $("#c").width() / 2,
top: $("#c").height() / 2 -50,
textAlign: 'center',
fill: '#ffffff',
radius: 80,
id: 12,
fontSize: 18,
spacing: 10,
fontFamily: 'Arial',
fontWeight: 'normal'
});

canvas.add(CurvedText).renderAll(); 
canvas.setActiveObject(canvas.item(canvas.getObjects().length-1));
$('#text').keyup(function(){
var obj = canvas.getActiveObject();
if(obj){
obj.setText(this.value);
canvas.renderAll();
//update space and position
updatePos();
}
});

$('#text').focus(function(){
canvas.setActiveObject(canvas.item(canvas.getObjects().length-1));
});

//update space and position
function updatePos(){
CurvedText.top=$("#c").height() / 2 - 86 + CurvedText.height/2;
canvas.renderAll();
}

$('#radius, #spacing').change(function(){
var obj = canvas.getActiveObject();
if(obj){
obj.set($(this).attr('id'),$(this).val()); 
}
canvas.renderAll();
//update space and position
updatePos();
});

$('#radius, #spacing').change(function(){
var obj = canvas.getActiveObject();
if(obj){
obj.set($(this).attr('id'),$(this).val()); 
}
canvas.renderAll();
//update space and position
updatePos();
});

$('#convert').click(function(){
var props = {};
var obj = canvas.getActiveObject();
if(obj){
if(/curvedText/.test(obj.type)) {
default_text = obj.getText();
props = obj.toObject();
delete props['type'];
var textSample = new fabric.Text(default_text, props);
}else if(/text/.test(obj.type)) {
default_text = obj.getText();
props = obj.toObject();
delete props['type'];
props['textAlign'] = 'center';
props['radius'] = 50;
props['spacing'] = 20;
var textSample = new fabric.CurvedText(default_text, props);
}
canvas.remove(obj);
canvas.add(textSample).renderAll();
canvas.setActiveObject(canvas.item(canvas.getObjects().length-1));
}
});

function onSelected(){
var obj = canvas.getActiveObject();
$('#text').val(obj.getText());
$('#reverse').prop('checked', obj.get('reverse'));
$('#radius').val(obj.get('radius'));
$('#spacing').val(obj.get('spacing'));
$('#fill').val(obj.getFill());
}
function onDeSelected(){
$('#reverse').prop('checked', false);
$('#radius').val(50);
$('#spacing').val(20);
$('#fill').val('#0000FF');
}
});//]]>  

$("#save_img").click(function(){
canvas.deactivateAll().renderAll();
var mycanvas = document.getElementById("c"); //get your canvas
var image    = mycanvas.toDataURL("image/png");
window.open(image);
});
</script>

Dude對IE8使用ExCanvas http://excanvas.sourceforge.net/,這僅在IE8瀏覽器中受支持,而在IE 7中不支持

抱歉,您不能在canie7和ie8中使用canvas。 那里不支持Canvas Api

http://caniuse.com/canvas

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM