我在做什么
根据查询字符串中指定的一些变量,通过 javascript 生成动态图像。我在 PHP 网站中使用它。
我需要的
这里的重点是我想在 javascript 中发送这个动态生成的图像,以作为 Image Header显示在页面上。
我正在使用什么
PHP 与 APACHE 服务器(wamp)
我需要的类似示例
http://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World
这是一个 Google Chart API,在点击上述 URL 时,它会根据查询字符串中指定的参数返回一个 PNG 图像。
我已经尝试了很多,但仍然无法达到成功点。
只是,为了向您展示我在这里所做的是代码
我的代码部分
/*
Logic to generate a canvas based on some parameters goes here
*/
// Canvas to Image
var img = canvas.toDataURL("image/png");
/*
My goal is to set this image to header of the page,
so that when the page is hit, an image is returned,
just like the Google Chart API thing mentioned above
*/