1<!-- gray image 350 width, 150 height -->
2<img src="https://via.placeholder.com/350x150">
3
4 <!-- random pics 200*300 -->
5<img src="https://picsum.photos/200/300">
6
7<!-- random pics square -->
8 <img src="https://picsum.photos/200">
9
10<!--
11 link for more
12 https://picsum.photos/
13 https://placeholder.com/
14 -->
15
1<img src="https://picsum.photos/200/300?random=1">
2<img src="https://picsum.photos/200/300?random=2">
1// This is the URL for the placeholder image
2// To resize the image, change the last part of the URL to any size you want
3
4https://via.placeholder.com/350x150
1from PIL import Image
2img = Image.new('RGB', (32,32), color='white')
3img.save('empty.png')
4quit()
5