save multiple image

mathanraj76

Member
Joined
Feb 4, 2013
Messages
6
Programming Experience
Beginner
Hi..

I need help ..to save multiple image..

I have a picture box name as "picOutput"

and i two command button name as " start capture" and stop "capture"

when i click start capture it will capture current image and when i click stop capture ..it will stop capture and save into current folder..

I need help on here where wherever i click "stop capture"..it should save a the capture image

example : fl1.jpg,fl2.jpg,fl3.jgp and so on


Thanks
Rj
 
Your question suggests that you can already capture to an Image object. If that is not the case then you might try explaining exactly what you mean by the "current image". Assuming that you can create an Image object, you can simply Add one to a List(Of Image) each time. When you're done, you can use a For loop to go through that list and call Save on each one. You can append the loop counter to the name of each file to get the sequence.
 
i still new in vb.net..can show me the code how to do it ..
so that when ever i click the command button "stop capture" it will capture the image and save into current folder..
 
It might not have been a bad idea to actually explain that in the first place. Your thread title refers to saving images so is it really a surprise that we would assume that you've already got images to save? Try again and this time provide a FULL and CLEAR description. You seem to assume that we know what "capture current image" means. We don't. It could be interpreted in any number ways.
 
Back
Top