Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any image hosting services with a public API? [closed]

I've been considering image hosting services for a project but am starting to wonder if that's just too complicated for my target audience as they'd have to upload all their images to the hosting service and then "attach" the images to the CSS file using the links the hosting service provides them. While that's a fairly simple process for us developers, I'm thinking that might be a large barrier to getting user buy-in for this feature.

I could simplify by hosting and serving the images myself but I'm worried about potential scalability issues that could present which I don't have the hardware or bandwidth to handle at the present time.

My thought is that I could have users upload their images and CSS to the server in a single zip file to the web server which could then extract the files from the zip, push the images on to an image hosting service, programmatically get the corresponding URL from the service and update the CSS accordingly before attaching it to the user's display profile.

This approach could kill both birds with one stone, I wouldn't have to worry about the bandwidth issues caused by serving potentially large images on every profile request and the user doesn't have to go through the headache of needing to set up an account on an image hosting service.

Does anyone know of any image hosting services that I can programmatically integrate with that has good reliability and performance that could assist me with this conundrum?

Thanks in advance

like image 720
BenAlabaster Avatar asked Sep 23 '09 23:09

BenAlabaster


People also ask

What is the most user friendly image hosting platform?

#1) Flickr Flickr is the online photo management and sharing application. It provides the functionalities to upload photos and share them securely. Members will be able to supplement their photos with license information, tags, geolocation, etc. It can be used on the web, mobile, and desktop.

Does Google do image hosting?

Google Photos is another fantastic image sharing and hosting service. You can upload unlimited pictures to Google Photos for free—as long as each image is limited to 16 megapixels. Images above that resolution count against your Google Drive storage. The same goes for videos over 1080p.


1 Answers

http://deviantart.com

has a public and easy to use API just HTTP POST the image to their domain and you will get a json with the url

like image 103
clamp Avatar answered Oct 04 '22 05:10

clamp