admin管理员组文章数量:1340368
Anyone know how I would convert bytes which are sent via a websocket (from a C# app) to an image? I then want to draw the image on a canvas. I can see two ways of doing this:
- Somehow draw the image on the canvas in byte form without converting it.
- Convert the bytes to a base64 string somehow in javascript then draw.
Here's my function which receives the bytes for drawing:
function draw(imgData) {
var img=new Image();
img.onload = function() {
cxt.drawImage(img, 0, 0, canvas.width, canvas.height);
};
// What I was using before...
img.src = "data:image/jpeg;base64,"+imgData;
}
I was receiving the image already converted as a base64 string before, but after learning that sending the bytes is smaller in size (30% smaller?) I would prefer to get this working. I should also mention that the image is a jpeg.
Anyone know how I would do it? Thanks for the help. :)
Anyone know how I would convert bytes which are sent via a websocket (from a C# app) to an image? I then want to draw the image on a canvas. I can see two ways of doing this:
- Somehow draw the image on the canvas in byte form without converting it.
- Convert the bytes to a base64 string somehow in javascript then draw.
Here's my function which receives the bytes for drawing:
function draw(imgData) {
var img=new Image();
img.onload = function() {
cxt.drawImage(img, 0, 0, canvas.width, canvas.height);
};
// What I was using before...
img.src = "data:image/jpeg;base64,"+imgData;
}
I was receiving the image already converted as a base64 string before, but after learning that sending the bytes is smaller in size (30% smaller?) I would prefer to get this working. I should also mention that the image is a jpeg.
Anyone know how I would do it? Thanks for the help. :)
Share Improve this question edited Aug 21, 2012 at 16:04 Joey Morani asked Aug 20, 2012 at 16:57 Joey MoraniJoey Morani 26.6k33 gold badges89 silver badges132 bronze badges 1-
Not setting this as an answer because it is just a guess, but could you leave the
;base64
off andescape(imgData)
? – Malk Commented Aug 20, 2012 at 17:07
2 Answers
Reset to default 5I used this in the end:
function draw(imgData, frameCount) {
var r = new FileReader();
r.readAsBinaryString(imgData);
r.onload = function(){
var img=new Image();
img.onload = function() {
cxt.drawImage(img, 0, 0, canvas.width, canvas.height);
}
img.src = "data:image/jpeg;base64,"+window.btoa(r.result);
};
}
I needed to read the bytes into a string before using btoa().
If your image is really a jpeg already, you can just convert the received data to a base64 stream. Firefox and Webkit browsers (as I recall) have a certain function, btoa()
. It converts the input string to a base64 encoded string. Its counterpart is atob()
that does the opposite.
You could use it like the following:
function draw(imgData){
var b64imgData = btoa(imgData); //Binary to ASCII, where it probably stands for
var img = new Image();
img.src = "data:image/jpeg;base64," + b64imgData;
document.body.appendChild(img); //or append it to something else, just an example
}
If the browser you target (IE, for example) isn't Firefox or a Webkit one, you can use one of the multiple conversion function lying around the internet (good one, it also provides statistics of performances in multiple browsers, if you're interested :)
本文标签: javascriptConverting bytes to an image for drawing on a HTML5 canvasStack Overflow
版权声明:本文标题:javascript - Converting bytes to an image for drawing on a HTML5 canvas - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743615178a2510627.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论