面料curveText间距/字距调整问题

时间:2014-01-10 14:40:34

标签: javascript canvas html5-canvas fabricjs kerning

我正在尝试修复fabric.curvedText.js扩展中遇到的间距/字距调整问题。

curvedText.js

https://github.com/Skritz/fabric.curvedText/blob/master/curvedText.js

在句子中添加大写字母时,它似乎会抛弃半径上每个字母之间的间距。

关于如何解决此问题的任何想法?

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>

1 个答案:

答案 0 :(得分:1)

我刚刚在fabricjs的另一个弯曲文本扩展名中解决了这个问题:

https://github.com/EffEPi/fabric.curvedText

您可以尝试使用此功能,或将更正后的代码调整为您正在使用的分机。关键在于这一行:

curAngle = (i * parseInt( this.opts.spacing )) + parseInt( this.opts.rotate ) - align;

这样做是将前一个字母的每个字母固定一个固定的宽度。您需要根据字母大小来分隔它。在我的代码中,我这样做了:

thisLetterAngle = ((this.letters.item(i).width + space) / this.radius) / (Math.PI/180);
curAngleRotation = multiplier * ((multiplier * curAngle) + lastLetterAngle + (thisLetterAngle/2));
curAngle = multiplier * ((multiplier * curAngle) + lastLetterAngle);
angleRadians=curAngle*(Math.PI/180);
lastLetterAngle = thisLetterAngle;

此代码使用公式angle = circunference / radius计算下一个字母的角度 curAngleRotation是我将应用于该字母的轮换,我需要它在成绩 curAngle是字母所在圆周的位置,我需要它以弧度表示 凹面效果的乘数设置为1,凸面的乘数设置为-1

在计算之后,首先设置字母的角度,然后位置字母

非常重要
this.letters.item(i).setAngle(curAngleRotation);
this.letters.item(i).set('top', multiplier*-1*(Math.cos(angleRadians)*this.radius));
this.letters.item(i).set('left', multiplier*(Math.sin(angleRadians)*this.radius));