Answers for "example images"

5

lorem picsum

<img src="https://picsum.photos/200/300?random=1">
<img src="https://picsum.photos/200/300?random=2">
Posted by: Guest on July-13-2020
-1

fake api images

Just add your desired image size (width & height) after our URL, and you'll get a random image.

https://picsum.photos/200/300
To get a square image, just add the size.

https://picsum.photos/200
Posted by: Guest on August-05-2020
0

example images

You can get nice test images from https://picsum.photos/
Posted by: Guest on August-11-2021
3

create transparent placeholder img

from PIL import Image
img = Image.new('RGB', (32,32), color='white')
img.save('empty.png')
quit()
Posted by: Guest on May-29-2020
2

lorem picsum

{
        "id": "0",
        "author": "Alejandro Escamilla",
        "width": 5616,
        "height": 3744,
        "url": "https://unsplash.com/...",
        "download_url": "https://picsum.photos/..."
}
Posted by: Guest on July-13-2020

Python Answers by Framework

Browse Popular Code Answers by Language