如何使用画布以梯形形状绘制图像

时间:2014-05-13 06:36:08

标签: javascript html5-canvas

我想使用画布以梯形形状绘制图像。

我尝试了变换,但我没有得到梯形视图。

请有人给我解决方案,使用画布在梯形视图中绘制图像。

我希望实际图像应该像这样/ _ \

进行转换

1 个答案:

答案 0 :(得分:2)

以下是将图像“转换”为梯形的方法。众所周知,这种技术可以将图像线切割为直线,然后逐渐绘制线条。

此功能允许您设置梯形形状的数量(%)并处理缩放图像:

function drawTrapezoid(ctx, img, x, y, w, h, factor) {

    var startPoint = x + w * 0.5 * (factor*0.01), // calculate top x
        xi, yi, scale = img.height / h,           // used for interpolation/scale
        startLine = y,                            // used for interpolation
        endLine = y + h;                          // abs. end line (y)

    for(; y < endLine; y++) {

        // get x position based on line (y)
        xi = interpolate(startPoint, y, x, endLine, (y - startLine) / h);

        // get scaled y position for source image
        yi = (y * scale + 0.5)|0;

        // draw the slice
        ctx.drawImage(img, 0, yi, img.width, 1,       // source line
                           xi.x, y, w - xi.x * 2, 1); // output line
    }

    // sub-function doing the interpolation        
    function interpolate(x1, y1, x2, y2, t) {
        return {
            x: x1 + (x2 - x1) * t,
            y: y1 + (y2 - y1) * t
        };
    }
}

<强> FIDDLE

Snap

希望这有帮助!