Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
i want to upload and store image in images folder in c#.net windosapplication
how can i store image any code for this task ....???
Posted
Comments
[no name] 26-Mar-12 15:47pm    
You are going to have to be more specific in your question. What have you tried? What code are you using? What errors are you getting?

1 solution

Not a specific question but:
C#
byte[] bytes = File.ReadAllBytes("Name of file to load");
Image image = imageBytes.ToImage();
image.Save("Name of saved file");


And Also, please look at this:

How to Save Image in Folder in C# window Application.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900