|
|
|
|
|
by sharkbrainguy
5587 days ago
|
|
Here's javascript, the other languages are left as an exercise. function Kitten(width, height, color) {
var img, g, w, h;
w = parseInt(width, 10);
h = parseInt(height, 10);
g = color ? "" : "g/";
img = document.createElement('img');
img.src = "http://placekitten.com/" + g + w + "/" + h;
img.width = w;
img.height = h;
return img;
};
|
|