views:

74

answers:

5

I am creating and application that need to save images. I don't want to write it if it already exits, Anyone know of a product that I can use so I don't have to develop mine. I am using asp.net MVC. What I want is something with and API that I can save to and retrieve to ( I don't want to store the images in my system if its possible).

Thanks

+1  A: 

If you have the image file already (i.e. someone uploads it) and just want a place to put it that's not your local machine or your database you can look into using some sort of cloud-storage system like Amazon S3 (Note: this will cost you money). You can then use a library like ThreeSharp. You can also have Amazon serve up the images instead of your webserver.

If you don't already have the images, i.e. you want to generate images, you'll need to be more specific on what exactly you need. There is a wide array of libraries and some are better suited for certain scenarios than others.

Talljoe
A: 

You could use Flickr to store your images. Alternately you could also use a service like ImageShack.

nikmd23
A: 

Flickr has an api that will allow you to manage images.

Rohan West
+3  A: 

Picasa also has a .NET API (which I use with success)

Jon Erickson
+1: Picasa is a good option as well.
RSolberg
+4  A: 

I have been using the FLICKR.NET API for my website (which is ASP.NET - MVC) and love it!

RSolberg