Supposing you were designing an image gallery website that uses dynamic images. By dynamic, I mean that these images can be converted to different formats, scaled, cropped and watermarked on the fly. The dynamic images are retrieved from an image server (running separately from the web server) that keeps only one source image and responds to HTTP POST requests (in JSON).
Would you as a web developer find it easy to develop a website using an image server like this? If so, how would you retrieve and display the images? If not, what would you change about the image server?
This is an open ended question, so I’m just wondering how suitable an image server designed in this way would be for a web developer, and for the application mentioned above.
Images are shown to endusers via
<img ..../>tag, which impliesGETrequest. For each imgGETrequest I would need to do the following:GETrequest path and parametersPOSTrequest to the image serverNo, I cant say it’s an easy solution and it’d be much easier if it were not for such
GET–POST–GETconversion.