我正在使用Phonegap Camera Plugin在Canvas上绘制捕获的图像。
<canvas id="canvas"></canvas>
和JS:
var canvas = document.getElementById('canvas');
var context = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
var x = 0;
var y = 0;
var width = window.innerWidth;
var height = window.innerHeight;
var imageObj = new Image();
imageObj.onload = function() {
context.drawImage(imageObj, x, y, width, height);
};
imageObj.src = imageURI;
投影图像看起来扭曲(拉伸,宽度大于实际)。
如何显示图像,如css width:100%;高度:自动
答案 0 :(得分:0)
如果您的图片与屏幕的比例不同,那么它会被拉伸,因为您告诉它要拉伸到宽度和高度:context.drawImage(imageObj, x, y, width, height);
。您可以尝试删除宽度,高度参数。
您可能需要计算缩放比率:
var ratio;
if (imageObj.width>width) {
ratio = width/imageObj.width;
}
else if (imageObj.height > height) {
ratio = height/imageObj.height;
}
else {
ratio = 1;
}
context.drawImage(imageObj, x, y, imageObj.width*ratio, imageObj.height*ratio);