working on flash/actionscript3 and the FLARToolkit, I m going on trouble trying to get a screenshot of what is displayed on the scene ! I m using this function :
function createJPG(m:MovieClip, q:Number, fileName:String)
{
var jpgSource:BitmapData = new BitmapData (m.width, m.height);
jpgSource.draw(m);
var jpgEncoder:JPGEncoder = new JPGEncoder(q);
var jpgStream:ByteArray = jpgEncoder.encode(jpgSource);
var header:URLRequestHeader = new URLRequestHeader ("Content-type",
"application/octet-stream");
//Make sure to use the correct path to jpg_encoder_download.php
var jpgURLRequest:URLRequest = new URLRequest
("jpg_encoder_download.php?name=" + fileName + ".jpg");
jpgURLRequest.requestHeaders.push(header);
jpgURLRequest.method = URLRequestMethod.POST;
jpgURLRequest.data = jpgStream;
var jpgURLLoader:URLLoader = new URLLoader();
navigateToURL(jpgURLRequest, "_blank");
}
as you can see it requests a MovieClip as parameter and I dont know how to give it that from the main class the FLAR.as ! you'll probably notice that I m starting with actionscript ^^ maybe I m asking for a stupid stuff ! sorry for bothering anyway and thanks for help :)
EDIT : Hi again ! I m getting more and more close to the solution and understanding how the FLAR system works ! I ve changed my capture function to get BitmapData instead of MovieClip parameter for drawing the image, and when using my function I m passing it the " ._raster.bitmapData " property of the ARAppBase class to get the video data. Everything worked and I got my screenshot, the point is that I m not having a screenshot of the whole scene with the AR effect, meaning with the drawed 3D object that appears, but I m only screenshooting the video data flow without the 3d object ! that made me understood that I m getting only the webcam video data and not the final result. As I went more over studying the FLAR system I think (I m not sure) that the 3D is not combined no where to the video data but just rendered over it ! if this is right ! what should I do to combine the cam video data and the 3D rendering to a unique useable BitmapData for my screenshot function ???!