how do i take picture from a digital camera attached to my computer throught USB cable using vb.net or asp.net or C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T19:22:37Z http://stackoverflow.com/feeds/question/75691 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/75691/how-do-i-take-picture-from-a-digital-camera-attached-to-my-computer-throught-usb 1 how do i take picture from a digital camera attached to my computer throught USB cable using vb.net or asp.net or C#? bugBurger 2008-09-16T18:54:13Z 2009-03-01T15:21:46Z <p>I am writing picture editing windows forms application using vb.net/c#. i have a client requirement to capture the photo from digital still camera attached to computer. </p> <p>how can i capture a photo from USB connected digital still camera device in my windows application ?</p> http://stackoverflow.com/questions/75691/how-do-i-take-picture-from-a-digital-camera-attached-to-my-computer-throught-usb/75728#75728 0 Answer by AlexDuggleby for how do i take picture from a digital camera attached to my computer throught USB cable using vb.net or asp.net or C#? AlexDuggleby 2008-09-16T18:59:54Z 2008-09-16T18:59:54Z <p>Usually the camera is displayed as a removable drive when attached.</p> <p>So for a Winforms application just let the user select the drive and the picture you want to upload. You can do any processing once you have the FileStream of the picture.</p> <p>In ASP.net you are going to need a FileUpload Control where again the user can select the drive and picture to upload. Processing this time would be via MemoryStream on the HttpRequest.Files object.</p> <p>Hope that helps.</p> http://stackoverflow.com/questions/75691/how-do-i-take-picture-from-a-digital-camera-attached-to-my-computer-throught-usb/75730#75730 0 Answer by Sean McMains for how do i take picture from a digital camera attached to my computer throught USB cable using vb.net or asp.net or C#? Sean McMains 2008-09-16T19:00:08Z 2008-09-16T19:00:08Z <p>This depends on your camera.</p> <p>Many cameras will simply mount as USB mass storage devices. If this is the case, then you can just copy the file from the visible file system like you would any other file on an external disk.</p> <p>If the camera doesn't make its contents available in this way, you'll need to look at the camera driver documentation to see how they recommend interacting with it.</p> http://stackoverflow.com/questions/75691/how-do-i-take-picture-from-a-digital-camera-attached-to-my-computer-throught-usb/75740#75740 0 Answer by Mark Ransom for how do i take picture from a digital camera attached to my computer throught USB cable using vb.net or asp.net or C#? Mark Ransom 2008-09-16T19:01:03Z 2008-09-16T19:01:03Z <p>It will depend on the brand of camera. Here is a link to start with for <a href="http://www.usa.canon.com/consumer/controller?act=SDKHomePageAct&amp;keycode=Sdk_Lic&amp;fcategoryid=314&amp;modelid=7474&amp;id=3464" rel="nofollow">Canon</a>.</p> http://stackoverflow.com/questions/75691/how-do-i-take-picture-from-a-digital-camera-attached-to-my-computer-throught-usb/75754#75754 1 Answer by Sam for how do i take picture from a digital camera attached to my computer throught USB cable using vb.net or asp.net or C#? Sam 2008-09-16T19:01:48Z 2008-09-16T19:01:48Z <p>I assume you want to activate the action of taking a picture from the computer which the camera is attached to. If that is the case then the first thing I would do is search for an API for that particular camera model. I don't believe there is a standard protocol/framework for interacting with digital cameras besides accessing the memory card within the camera.</p> http://stackoverflow.com/questions/75691/how-do-i-take-picture-from-a-digital-camera-attached-to-my-computer-throught-usb/75898#75898 2 Answer by Ilya for how do i take picture from a digital camera attached to my computer throught USB cable using vb.net or asp.net or C#? Ilya 2008-09-16T19:16:25Z 2008-09-16T20:45:13Z <p>This is depend on the interface the camera exporting. If this is standard mass storage interface you just use standard file interface, i.e you will see the camera as removable disk and can use standard Create/Read/Write/File operation.<br /> Many new cameras have ptp (Picture transport protocol) interface. So you will need using <a href="http://msdn.microsoft.com/en-us/library/aa139779.aspx" rel="nofollow">Windows Image Acquisition</a> API.</p> <p>You might find useful following <a href="http://www.codeproject.com/KB/dotnet/wiascriptingdotnet.aspx" rel="nofollow">Link</a>. If i understand correctly this is a sample code for exactly what are you looking for. Google is your friend :) </p> <p>Another piece of info: many cameras will support both mass storage and ptp interfaces and it will be selectable by camera user interface. In case of automatic mode camera probably will switch to ptp interface.</p> http://stackoverflow.com/questions/75691/how-do-i-take-picture-from-a-digital-camera-attached-to-my-computer-throught-usb/599954#599954 1 Answer by Matt for how do i take picture from a digital camera attached to my computer throught USB cable using vb.net or asp.net or C#? Matt 2009-03-01T15:21:46Z 2009-03-01T15:21:46Z <p>If you use the Windows Image Acquisition Library, you'll see events there for capturing camera new picture events. I had a similar requirement and wrote a test rig; we went down to the local camera store and tried every camera they had. The only cameras we could find that supported this functionality were the Nikon D-series cameras.</p> <p>We found that with most cameras, you can't even take a picture when they are plugged in. When you plug them in to the USB port, most cameras will switch into a mode where the only thing they'll do is transfer data. The quick way to find out if a camera will work at all is to plug it into a PC, then try to snap a picture. If it lets you do that you have a chance. It also needs to support PTP.</p>