0

使用什么元素:背景图像 + 图像(形状)+ 画布中的文本

问题:没有在画布背景图像上方显示文本。

我所期望的:在图像上方显示带有颜色背景图像的文本。

我所拥有的:如果删除图像makeShape()功能,它将显示文本。注意:图像函数有背景颜色。


这是一个 HTML 表单代码:

<!doctype html>
<html lang="en">
    <head>
        <title>Canvas text above picture</title>    
        <meta charset="utf-8">
        <style>
            canvas {
                border: 2px solid black;
            }
        </style>
    </head>
    <body>
<form>
<p>
<label for="backgroundColor">Text font:</label>
<select id="backgroundColor">
<option value="white" selected="selected">White</option>
<option value="black">Black</option>
</select>
</p>
<p>
<label for="txt">Text font:</label>
<textarea id="txt" cols="40" rows="3"></textarea>
</p>

<p>
<input type="button" id="previewButton" value="Preview">
</p>
</form>
        <canvas id="myCanvas" width="600" height="500"></canvas>
        <script src="canvasshirt.js"></script>

    </body>
</html>

一个canvasshirt.js代码:

window.onload = function() {
    var button = document.getElementById("previewButton");
    button.onclick = previewHandler;
}

function previewHandler() {

    var ca = document.getElementById("myCanvas");
    var co = ca.getContext("2d");

    var bgcolor = document.getElementById("backgroundColor");
    var index = bgcolor.selectedIndex;
    var fgColor = bgcolor[index].value;

    var text = document.getElementById("txt").value;

    drawText(co, text); // ! - this should show text above of drawBckg() function

    drawBckg(ca, co, 600, 500, fgColor); // this draw a background of picture below of text
}


function drawBckg(ca, co, w, h, color)
{
    makeShape(co);

    co.fillStyle = color;
    co.fillRect(0, 0, w, h);
}

function makeShape(co)
{
    var shapeimg = new Image();

    shapeimg.src = "shape2.png";

    shapeimg.onload = function() {
        co.drawImage(shapeimg, 170, 10, 233, 350);
    }
}

function drawText(co, text)
{
    co.font = " 13px Arial";
    //co.font = "bold 1em sans-serif";
    co.textAlign = "left";
    co.fillText(text, 20, 40);
}

固定试...

当更改源代码的功能排序时,将导致以下结果:

drawBckg(ca, co, 600, 500, fgColor);
drawText(co, text);

示例图片(文字在图片下方):

蓝色文本在 <code>makeShape()</code> 关闭背景的图片下方

4

2 回答 2

1
drawBckg(ca, co, 600, 500, bgcolor, function(){
    drawText(co, text, fgColor);
}); 

...

function drawBckg(ca, co, w, h, color, callback)
{
    makeShape(co, callback);

    co.fillStyle = color;
    co.fillRect(0, 0, w, h);
    callback();  // draw the text here as a fallback if the image doesn't load
}

function makeShape(co, callback)
{
    var shapeimg = new Image();

    shapeimg.src = "shape2.png";

    shapeimg.onload = function() {
        co.drawImage(shapeimg, 170, 10, 233, 350);
        callback();  // draw the text after drawing the image.
    }
}
于 2012-10-22T15:41:39.103 回答
0

找到解决方案。

首先,当绘制一个对象时,它必须恢复到新状态,否则它将覆盖相同图像上的图像。这是功能co.restore()

function drawBckg(ca, co, w, h, color)
{
    co.restore();

    makeShape(co);
}

但是,我失败的是放入 onload 函数:

function makeShape(co)
{
    var shapeimg = new Image();

    shapeimg.src = "shape2.png";

    shapeimg.onload = function() {  // <-- remove
    co.drawImage(shapeimg, 170, 10, 233, 350);
    }   // <-- remove
}

这将加载,显示在图片下方,因为它首先加载。正常删除 onload 到加载的 drawImage :

function makeShape(co)
{
    var shapeimg = new Image();

    shapeimg.src = "shape2.png";

    co.drawImage(shapeimg, 170, 10, 233, 350); // <-- this
}

现在它起作用了!

于 2012-10-22T16:06:33.360 回答