I'm using this code to create an Texture2D from the rendertexture of all cameras.
Code:
var w = 256;
var h = 256;
var cameras:Camera[] = Camera.allCameras;
var renderTexture:RenderTexture = RenderTexture.GetTemporary(Screen.width, Screen.height, 24);
RenderTexture.active = renderTexture;
for (var camera:Camera in cameras)
{
if (camera.enabled)
{
var fov:float = camera.fov;
camera.targetTexture = renderTexture;
camera.Render();
camera.targetTexture = null;
camera.fov = fov;
}
}
var result:Texture2D = new Texture2D(w, h, TextureFormat.ARGB32, false);
result.ReadPixels(Rect(0.0f, 0.0f, Screen.width, Screen.height), 0, 0, false);
result.Apply();
Application.ExternalCall("exportImage",System.Convert.ToBase64String(result.EncodeToPNG()));
It's working right on the webplayer, but when trying to convert this texture2d to base64 and sending to browser (by externalcall()) the result is a grey semitransparent image.
Any help would be greatly appreciated! Thanks.
I was able to post a screenshot to webplayer with:
and on the browser side: