我想像这样扭曲我需要为context.setTransform设置的params吗?
答案 0 :(得分:17)
使用单个2D变换无法实现此目的。
2D变换允许您通过将第二个参数中的倾斜角的切线传递给setTransform()
来“向上”或“向下”倾斜图像,但是您希望以对称的方式执行这两者(结果在“向近”和/或“向远”的变形中。你需要一个3D变换才能做到这一点。
但是,您可以通过将图像切割成几个水平“波段”并在渲染每个波段时应用不同的变换来模拟相同的结果。距离图像的一半更远的条带将施加更强的倾斜角度。类似的东西:
var width = image.width,
height = image.height,
context = $("canvas")[0].getContext("2d");
for (var i = 0; i <= height / 2; ++i) {
context.setTransform(1, -0.4 * i / height, 0, 1, 0, 60);
context.drawImage(image,
0, height / 2 - i, width, 2,
0, height / 2 - i, width, 2);
context.setTransform(1, 0.4 * i / height, 0, 1, 0, 60);
context.drawImage(image,
0, height / 2 + i, width, 2,
0, height / 2 + i, width, 2);
}
请注意,波段为两个像素而不是一个,以避免波纹效应。
您可以在this fiddle中看到结果。
答案 1 :(得分:3)
这是我在玩JS渲染伪三维视角时写的一个函数。
与基于条带的变换函数(不可否认,对于大多数标准用例非常完美)不同,此函数使用4个角的矩阵来定义原始矩形应转换为的自定义四边形。 这增加了一些灵活性,可用于渲染自定义梯形,用于“墙上绘画”和#34;水平视角和&#34;地毯上的地毯&#34;垂直透视(以及不对称的四边形,以获得更像3D的感觉)。
function drawImageInPerspective(
srcImg,
targetCanvas,
//Define where on the canvas the image should be drawn:
//coordinates of the 4 corners of the quadrilateral that the original rectangular image will be transformed onto:
topLeftX, topLeftY,
bottomLeftX, bottomLeftY,
topRightX, topRightY,
bottomRightX, bottomRightY,
//optionally flip the original image horizontally or vertically *before* transforming the original rectangular image to the custom quadrilateral:
flipHorizontally,
flipVertically
) {
var srcWidth=srcImg.naturalWidth;
var srcHeight=srcImg.naturalHeight;
var targetMarginX=Math.min(topLeftX, bottomLeftX, topRightX, bottomRightX);
var targetMarginY=Math.min(topLeftY, bottomLeftY, topRightY, bottomRightY);
var targetTopWidth=(topRightX-topLeftX);
var targetTopOffset=topLeftX-targetMarginX;
var targetBottomWidth=(bottomRightX-bottomLeftX);
var targetBottomOffset=bottomLeftX-targetMarginX;
var targetLeftHeight=(bottomLeftY-topLeftY);
var targetLeftOffset=topLeftY-targetMarginY;
var targetRightHeight=(bottomRightY-topRightY);
var targetRightOffset=topRightY-targetMarginY;
var tmpWidth=Math.max(targetTopWidth+targetTopOffset, targetBottomWidth+targetBottomOffset);
var tmpHeight=Math.max(targetLeftHeight+targetLeftOffset, targetRightHeight+targetRightOffset);
var tmpCanvas=document.createElement('canvas');
tmpCanvas.width=tmpWidth;
tmpCanvas.height=tmpHeight;
var tmpContext = tmpCanvas.getContext('2d');
tmpContext.translate(
flipHorizontally ? tmpWidth : 0,
flipVertically ? tmpHeight : 0
);
tmpContext.scale(
(flipHorizontally ? -1 : 1)*(tmpWidth/srcWidth),
(flipVertically? -1 : 1)*(tmpHeight/srcHeight)
);
tmpContext.drawImage(srcImg, 0, 0);
var tmpMap=tmpContext.getImageData(0,0,tmpWidth,tmpHeight);
var tmpImgData=tmpMap.data;
var targetContext=targetCanvas.getContext('2d');
var targetMap = targetContext.getImageData(targetMarginX,targetMarginY,tmpWidth,tmpHeight);
var targetImgData = targetMap.data;
var tmpX,tmpY,
targetX,targetY,
tmpPoint, targetPoint;
for(var tmpY = 0; tmpY < tmpHeight; tmpY++) {
for(var tmpX = 0; tmpX < tmpWidth; tmpX++) {
//Index in the context.getImageData(...).data array.
//This array is a one-dimensional array which reserves 4 values for each pixel [red,green,blue,alpha) stores all points in a single dimension, pixel after pixel, row after row:
tmpPoint=(tmpY*tmpWidth+tmpX)*4;
//calculate the coordinates of the point on the skewed image.
//
//Take the X coordinate of the original point and translate it onto target (skewed) coordinate:
//Calculate how big a % of srcWidth (unskewed x) tmpX is, then get the average this % of (skewed) targetTopWidth and targetBottomWidth, weighting the two using the point's Y coordinate, and taking the skewed offset into consideration (how far topLeft and bottomLeft of the transformation trapezium are from 0).
targetX=(
targetTopOffset
+targetTopWidth * tmpX/tmpWidth
)
* (1- tmpY/tmpHeight)
+ (
targetBottomOffset
+targetBottomWidth * tmpX/tmpWidth
)
* (tmpY/tmpHeight)
;
targetX=Math.round(targetX);
//Take the Y coordinate of the original point and translate it onto target (skewed) coordinate:
targetY=(
targetLeftOffset
+targetLeftHeight * tmpY/tmpHeight
)
* (1-tmpX/tmpWidth)
+ (
targetRightOffset
+targetRightHeight * tmpY/tmpHeight
)
* (tmpX/tmpWidth)
;
targetY=Math.round(targetY);
targetPoint=(targetY*tmpWidth+targetX)*4;
targetImgData[targetPoint]=tmpImgData[tmpPoint]; //red
targetImgData[targetPoint+1]=tmpImgData[tmpPoint+1]; //green
targetImgData[targetPoint+2]=tmpImgData[tmpPoint+2]; //blue
targetImgData[targetPoint+3]=tmpImgData[tmpPoint+3]; //alpha
}
}
targetContext.putImageData(targetMap,targetMarginX,targetMarginY);
}
以下是如何调用它:
function onLoad() {
var canvas = document.createElement("canvas");
canvas.id = 'canvas';
canvas.width=800;
canvas.height=800;
document.body.appendChild(canvas);
var img = new Image();
img.onload = function(){
//draw the original rectangular image as a 300x300 quadrilateral with its bottom-left and top-right corners skewed a bit:
drawImageInPerspective(
img, canvas,
//coordinates of the 4 corners of the quadrilateral that the original rectangular image will be transformed onto:
0, 0, //top left corner: x, y
50, 300, //bottom left corner: x, y - position it 50px more to the right than the top right corner
300, 50, //top right corner: x, y - position it 50px below the top left corner
300, 300, //bottom right corner: x,y
false, //don't flip the original image horizontally
false //don't flip the original image vertically
);
}
img.src="img/rectangle.png";
}
尽管所有的逐像素计算实际上都非常有效,但它完成了工作:
......但可能有更优雅的方法来做到这一点。
答案 2 :(得分:0)
有一种将矩形转换为梯形的方法,请参阅this stack overflow answer。但是,您需要在每个像素上使用它。
您还可以将图像切成1像素宽的垂直条带,然后从中心拉伸每个条带。
假设这会导致w条带,并且您希望梯形的左手边缘是右手边缘的80%,那么
对于条带n,拉伸应为1 + n /(4w)
答案 3 :(得分:0)
这仍然只是为了未来,但它太酷了,我已经忍不住要添加它了。
Chrome 团队正在研究 adding non-affine transforms to the 2D API。
这将向 2D API 添加一些方法,例如 perspective()
、rotate3d()
、rotateAxis()
,并扩展其他方法以添加 z 轴,以及改进 setTransform()
和transform()
最终接受 3D DOMMatrix。
这仍然是非常实验性的,可能还会发生变化,但您已经可以在打开 chrome://flags/#enable-experimental-web-platform-features
的 Chrome Canary 中尝试此操作。
if( CanvasRenderingContext2D.prototype.rotate3d ) {
onload = (evt) => {
const img = document.getElementById("img");
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext("2d");
ctx.translate(0, canvas.height/2);
ctx.perspective(705); // yeah, magic numbers...
ctx.rotate3d(0, (Math.PI/180) * 321, 0); // and more
ctx.translate(0, -canvas.height/2);
const ratio = img.naturalHeight / canvas.height;
ctx.drawImage(img, 0, canvas.height/2 - img.naturalHeight/2);
};
}else {
console.error( "Your browser doesn't support affine transforms yet" );
}
body { margin: 0 }
canvas, img {
max-height: 100vh;
}
<canvas id="canvas" width="330" height="426"></canvas>
<img id="img" src="https://upload.wikimedia.org/wikipedia/en/f/f8/Only_By_the_Night_%28Kings_of_Leon_album_-_cover_art%29.jpg">
在当前的 Chrome Canary 中呈现为