如何在浏览器中显示不断变化的图像文件而不刷新闪烁?

时间:2011-03-25 22:04:01

标签: html image canvas refresh

我正在使用html在浏览器上显示图像(来自文件)...我有另一个程序,它一直拍摄我的屏幕截图并将其存储为图像文件“image.jpeg”。我使用setTimeout定期在浏览器上显示此图像。但是,图像在浏览器上没有变化..

这是我的代码...我使用了一个Image对象,以便每次运行javascript函数时都会加载一个新图像,但这似乎不起作用......

<html>

<head>

<script type="text/JavaScript">

var x=0, y=0;
var canvas, context, img;

function timedRefresh(timeoutPeriod)
{
    canvas = document.getElementById("x");
    context = canvas.getContext("2d");
    img = new Image();
    img.src = "image.jpeg";
    context.drawImage(img, x, y);
    x+=20; y+=20;
    //img.destroy();
    setTimeout("timedRefresh(1000)",timeoutPeriod);
}

</script>

<title>JavaScript Refresh Example</title>

</head>

<body onload="JavaScript:timedRefresh(1000);">

<canvas id="x" width="600" height="600" />

</body>
</html>

3 个答案:

答案 0 :(得分:14)

首先,当您设置图像对象的src属性时,图像尚未加载,您需要在图像的onload被触发时刷新画布(当图像时完成加载)。

其次,浏览器尝试使用缓存的图像image.jpeg。为避免这种情况,请在图像URI中添加一个伪造的参数。

例如:

var timeoutPeriod = 1000;
var imageURI = 'image.jpeg';
var x=0, y=0;
var img = new Image();
img.onload = function() {
    var canvas = document.getElementById("x");
    var context = canvas.getContext("2d");

    context.drawImage(img, x, y);
    x+=20; y+=20;
    setTimeout(timedRefresh,timeoutPeriod);
};

function timedRefresh() {
    // just change src attribute, will always trigger the onload callback
    img.src = imageURI + '?d=' + Date.now();
}

然后它应该有用。

答案 1 :(得分:5)

这是一个完整的工作示例。只需配置urlrefeshInterval即可。它使用Yannick的缓存预防,并且不会按照Piotr的建议在每次重新加载时重新创建img对象。

<html>
<head>
<script type="text/JavaScript">
var url = "cam1.php"; //url to load image from
var refreshInterval = 1000; //in ms
var drawDate = true; //draw date string
var img;

function init() {
    var canvas = document.getElementById("canvas");
    var context = canvas.getContext("2d");
    img = new Image();
    img.onload = function() {
        canvas.setAttribute("width", img.width)
        canvas.setAttribute("height", img.height)
        context.drawImage(this, 0, 0);
        if(drawDate) {
            var now = new Date();
            var text = now.toLocaleDateString() + " " + now.toLocaleTimeString();
            var maxWidth = 100;
            var x = img.width-10-maxWidth;
            var y = img.height-10;
            context.strokeStyle = 'black';
            context.lineWidth = 2;
            context.strokeText(text, x, y, maxWidth);
            context.fillStyle = 'white';
            context.fillText(text, x, y, maxWidth);
        }
    };
    refresh();
}
function refresh()
{
    img.src = url + "?t=" + new Date().getTime();
    setTimeout("refresh()",refreshInterval);
}

</script>
<title>JavaScript Refresh Example</title>
</head>

<body onload="JavaScript:init();">
<canvas id="canvas"/>
</body>
</html>

答案 2 :(得分:1)

我认为您不需要每次都在timedRefresh()创建Image对象。只需创建一个实例并不断更改其src属性。如果是您的代码段,img必须是全局变量。

但主要的问题是,你仍然会在Opera中看到闪烁(但不同类型)。请参阅:Image source update in JavaScript with Opera