ActionScript 3.0 :: Get My Webcam To Take A Snapshot Using It?

Nov 16, 2008

Currently working on a school project that requires me to use AS3 to display a webcam, and create a button that will take a snapshot and place it beside the video display.[code]...

View 2 Replies


Similar Posts:


Flex :: How To Take Webcam Snapshot Picture

Jul 11, 2010

Using Flex, what is the recommended way of taking a webcam snapshot picture? Something along the lines of:
var camera:Camera = Camera.getCamera();
var image:Image = /* magic goes here */

View 2 Replies

Php :: Saving A Picture In Flash Webcam Snapshot Application?

May 5, 2011

I have made a flash webcam application to allow the user to take a photo of themselves using a webcam. I have successfully saved the photo in my localhost. However, I would like to set the names of those photos. Currently, the photos names are generated by

$uniqueStamp = date('U');

I also have a textfield in my flash app that allows inputs from user for the photo name. For example if the user write 'MYPHOTONAME' in the textfield, the photo which will be saved in my localhost will be named 'MYPHOTONAME' too. How do I do it in Flash and in PHP? Currently I'm having some problems because I cannot send the textfield string to PHP.

Here is my flash code to send the snapshot to PHP and let the PHP save it in my localhost:

imgBA = jpgEncoder.encode(imgBD1);
sendReq.data = imgBA;
sendLoader.load(sendReq);

[Code]....

As you can see, I tried to pass in $photo = $_POST['photo']; from flash to PHP however I do not know the exact code, can anyone help me?

View 1 Replies

Actionscript 3 :: Flash Webcam Snapshot Reduce Motion Blur?

Feb 8, 2011

i have a photo snapping app built in flash. I notice that any movement results in a lot of motion blur.. which makes the photos kind of turd. Is there a way to digital reduce the blur? potential camera setting in actionscript??

View 2 Replies

ActionScript 3.0 :: Displaying/saving Webcam Snapshot In Correct Size?

Jul 13, 2010

Im sitting here with a project that i feel i have come a long way with (found some very usefull rescources). But i am stuck now and need some guideance in short terms what i am doing is a project where users can take a snapshot of them selves by using their webcams, and then save this picture.

This is all going ok, but when i save the picture its not the same size as the webcam picture. From what i can tell there is something going wrong with the bitmap creation process, and i cant seem to figure out how to add a field that i can toss the picture into like i have done with the video. (its using addchild(bitmap) now and that just adds a small picture at a given x & y, but i cant control size of it. And the saved pictures im getting are the size of the video area, but only 1/8th is filled with the picture, rest is just white..

[Code]...

View 3 Replies

ActionScript 3.0 :: Live Screen Capture Webcam Snapshot (bitmap API)?

Apr 10, 2008

Got round to the point where screen grabbing an image and saving it to file is too much, so what i want to do now, is take a snapshot of a live webcam image (I have webcam display working) and display the snapshot/screen grab, next to it or anywhere in the movie. This way the screen capture can be stored temporarily in the movie. once the movie is closed, all info is lost. Once another screen grab is taken, then the previous one is overwritten. The idea is simple but having problems working out how to do it in AS3!

I have got to the idea that i may need to use the Bitmap API to copy a section of the movie, and then redraw it into a new bitmap object?

View 9 Replies

Flash :: Upload Snapshot From Webcam Directly To Twitpic, Flickr, Facebook?

Jan 4, 2011

I succeed to get a snapshot from the webcam as a jpeg (via BitmapArray) and now I want to upload it directly to twitpic or flickr

View 1 Replies

ActionScript 3.0 :: Stage Snapshot With Webcam View And Image Is Not Working If The .swf Is Moved

May 25, 2011

Stage snapshot with webcam view and image is not working if the .swf is moved

private function initTracking() : void
{
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP;
var camW : int = 640;
var camH : int = 500;
[Code]...

View 0 Replies

ActionScript 3.0 :: Snapshot Of A Movieclip And Add The Snapshot To The Stage On Every Frame?

Nov 8, 2009

I want to take a snapshot of a movieclip and add the snapshot to the stage on every frame.

Does anyone know how to do this?

I'm trying to achieve a reflection effect...

View 3 Replies

Flash :: Recording Live From A Webcam / Recording From User's Webcam - PHP

May 23, 2011

I want my site's users to be able to record videos straight from their webcams into my site. Videowhisper is one such tool which seems to work fine - [URL] But I'm looking for opinions on better / more scalable / reliable solutions. Paid solutions are fine.

View 4 Replies

Php :: Take A Snapshot Of A Flv Video With Js/as3?

Oct 31, 2011

I am developing a website in php hosted on a shared linux server.I need to allow the users of my site to upload and play flv videos with flowplayer.It would be fantastic to show a snapshot of the video before it starts, something like these: http:[url]...My server doesn't support pseudostreaming and it has no ffmpeg/mplayer support (it's a shared host after all...)

I am guessing how can I take a snapshot of the nth frame of the video with only php or javascript or action script.I read something about bitmapdata class in flash >= 8, but i don't know how to do all the work automatically without the user's input.

View 2 Replies

IDE :: Flash SWF Snapshot To JPG?

Sep 11, 2009

I am in search of a "simple" way to implement the generation of a JPG from a Flash SWF housed within an HTML page. DETAILS: Once a visitor has assembled draggable objects within the SWF, and to their liking, I would like for them to have the ability to click a button that would render a JPG version of their layout. Hope this makes sense. I have found source codes online, in conjunction with PHP scripting, but am struggling to make this work.

View 1 Replies

Actionscript 3 :: Take The Stage Snapshot?

May 31, 2011

Cannot convert the stage as a bitmapData and draw it. Is there any way,

View 1 Replies

ActionScript 3.0 :: Getting A Snapshot Of A Video?

Nov 8, 2009

I'm making a video gallery in AS3 and using PHP on server. How can I get snapshot of an instant in a video to display it as that video's thumbnail (like YouTube)? I'm not sure if this is an AS3 question or a PHP question.

View 0 Replies

ActionScript 3.0 :: Make A Swf To Take Snapshot And Save It As Jpg?

Sep 2, 2003

how to make a swf to take snapshot and save it as jpg?

View 3 Replies

Flash :: DisplayObject Snapshot In Flex 3?

Jul 9, 2009

i'm creating a visual editor in flex and need to let users export thier projects into Image format. But i have one problem: size of the canvas is fixed and when user add element which is out of these sizes some scroll bars added. And user continue working on the project. but when he want to take snapshot of the canvas he just get the visible part ot the canvas with scrollbars. how to get image of the fullsize canvas?

The only solution i found is to check the positions and sizes of canvas child objects and rezise it to fit them. then take snap and resize back. But it hmmmm... too complicated i think. Is there some "easy methods"?

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
<mx:Script>

[Code].....

View 3 Replies

Flex :: Sending Snapshot Without Using Base64Encode

Mar 15, 2010

var is:ImageSnapshot = myImagesnapshot;
var str:String = ImageSnapshot.encodeImageAsBase64(is);

As of now, I am sending my jpeg data to the server with the code above. The problem is that it almost doubles the size of the data. Is there a way to send the image data directly without using any encoding.

View 3 Replies

Flash - Taking A Snapshot Of A Loader?

Apr 4, 2011

I'm attempting to take an image from a networked camera and store it as a bitmap. I discovered that flash didn't support MJPEG so I found a class someone had written that could talk to the camera and output on the screen. Then I edited it so that I could request the current image at any time and store it in a ByteArray.I've managed to load that ByteArray with a loader class and place it on the stage, but I'm not sure how to save that as a Bitmap?

View 3 Replies

Take A Snapshot Of The Homepage Of The Flash Site For Portfolio?

Jun 25, 2009

I have recently created a flash site and I am trying to update my online portfolio. How do I take a snapshot of the homepage of the flash site for my portfolio?

View 2 Replies

ActionScript 3.0 :: Post A Jpg Snapshot To PHP And Send Via Email

Dec 27, 2010

I want to create a movie clip where the user can adjust it selecting various colors shapes characters etc etc...and add someones email address to sent! From that movie clip...a snapshot is taken and sent over to php (in binary code or not) and from there php will send it to that someone the user chose before in Flash... Is it just me or am i thinking the wrong way!?

View 4 Replies

Media Server :: Snapshot Image From Stream On FMS

Nov 11, 2008

I have a stream playing on FMS. How can I make a snapshot of this video stream to be used as a thumbnail?

View 2 Replies

Flex :: Unable To Create Snapshot Of Canvas?

Nov 6, 2009

In my application a canvas object has height = 90 px & width = 86400 px (indicating number of seconds in a day [60 * 60 * 24] ). The canvas is scrollable and the user can add or delete components in that.Now, I want to have snapshot of the whole canvas & shrink it to size 910x30 to draw taken snapshot in another canvas.Can anybody tell me how to take snapshot of such large Component?I have tried to take snapshot in BitmapData object but as it max width is 2880 can not give whole canvas snapshot.

View 3 Replies

Flex :: Take A Snapshot Of A Movieclip With A Transparent Background?

Sep 13, 2010

I am coding in AS3 and I am using BitmapData to take a snapshot of a movieclip. Is there a way to have the end result BitmapData to support transparency?

How do I take a snapshot of a movieclip without any background?

View 2 Replies

Actionscript 3 :: Take Snapshot Of Video Control In Flex?

Feb 2, 2011

I had mx:Video object that play live strreamingvideo So how I can take snapshote of that Video

View 1 Replies

ActionScript 2 :: Taking Flash Image Snapshot Possible?

Sep 30, 2011

Is there any approach to take the snapshot of a drawing created in pure AS2 flash coding ?
I tried to use Bitmapdata and bridge but bitmap works in as3 and bridge combines two swf together and communicate with them. Is there a way of doing screenshot in as2 ?

View 1 Replies

Flex - Taking A Snapshot, Scaling It And Repeating?

Apr 1, 2012

I'm trying to scale text from 1 to 5, a sort of zoom in type of look. I'm using the code below:

<s:Scale target="myLabel" autoCenterTransform="true"
duration="2000"
scaleYFrom="1" scaleYTo="5" scaleXFrom="1" scaleXTo="5"
>

The text scales terribly. So my goal is to take a snapshot of the text label at a large font, add it to the display list, set the scale to a 5th and then animate the scale up to 1. After that I have to set the text again and do it all over again.

This is a Flex app and that's where my question comes in. I don't know how to take a snapshot, then what to add it to (group?) and then how to erase it and start over again?

View 1 Replies

ActionScript 2.0 :: Button To Save A Snapshot / Whole Frame?

Apr 19, 2011

I need to create a button to save a part of a swf(or a the whole swf) into jpg.

View 1 Replies

ActionScript 2.0 :: Save A Snapshot Of The Swf By Clicking A Button?

Sep 28, 2004

i'd like for user to be able to save a snapshot of the swf by clicking a btn. for example, i have a piece of paper that the user has typed on. is there a way to save an img of the swf?

View 1 Replies

ActionScript 3.0 :: Flash Take A Snapshot From A Streaming Video

Dec 1, 2010

I've set up Red5 on one of my servers. I've created a "caster" flash app and a "viewer" flash app. Basically this is a "one-to-many" webcam streaming application.Everything is working fine. Users can fire up their webcam and connect to the server and broadcast. Viewers can connect to the streams with the "viewer" app just fine.What I'm trying to implement now, are snapshot and record buttons on the viewer side. Right now I am just focusing on snapshots.I've found lots of examples/tutorials on how to take a snapshot using your own webcam. However, when I try to implement these on the "viewer" side, it doesn't work. When I try to search for code examples on how to capture streaming data, everything that comes up is software for sale.[code]If I use this code in the "caster" app, it works just fine. But on the viewer side it fails. Through trial and error I've determined that the line that is failing is:[code]

View 8 Replies

ActionScript 3.0 :: Flash - Take A Snapshot Of An Entire Movieclip?

Sep 25, 2011

I am trying to take a snapshot of an entire movieclip. Here is the function I am using:

[Code]...

When I pass it through the function I only get the bottom-right portion of the image. It has a centered registration point. I've tried all registration points too and the top-left (0,0) works but my project is already based around objects having a low-mid registration point: Does anyone know what I am doing wrong? I just want a snapshot of the full movieclip instead of the bottom-right portion regardless of the registration point. edit: No, I'm not here to sell watermelons

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved