You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add new JavaScript function: <b>Webrtc::getScreenShot()</b>. This function converts the RGB32 raw image to bitmap then to base64. The process is instantaneous and the base64 image could be used in JavaScript like this:
```
var image = new Image();
image.onload = function () {
document.getElementById("mycanvas").getContext("2d").drawImage(image, 0, 0, width, height);
};
image.src = "data:image/png;base64," + base64;
```
- Bug fix:
- [Issue #6](../../issues/6): The active element tag flashes when the window is resized or scrolled
- [Issue #7](../../issues/7): drawImage() function is toooo slooow
- [Issue #8](../../issues/8): Color alignment issue in drawImage()
No description provided.
The text was updated successfully, but these errors were encountered: