-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicsum-llms.txt
More file actions
69 lines (52 loc) · 1.02 KB
/
picsum-llms.txt
File metadata and controls
69 lines (52 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Picsum API Documentation
A simple API for placeholder images.
## Basic Usage
### Random Image
```
https://picsum.photos/200/300
```
### Square Image
```
https://picsum.photos/200
```
### Specific Image
Use this if you are putting the URL in Fireproof.
```
https://picsum.photos/id/237/200/300
```
### Static Random Image
```
https://picsum.photos/seed/picsum/200/300
```
## Image Modifications
### Grayscale
```
https://picsum.photos/200/300?grayscale
```
### Blur
```
https://picsum.photos/200/300/?blur
https://picsum.photos/200/300/?blur=2 # Blur level 1-10
```
## Advanced Features
### Multiple Images
```
<img src="https://picsum.photos/200/300?random=1">
<img src="https://picsum.photos/200/300?random=2">
```
### Image Formats
```
https://picsum.photos/200/300.jpg
https://picsum.photos/200/300.webp
```
## API Endpoints
### List Images
```
https://picsum.photos/v2/list
https://picsum.photos/v2/list?page=2&limit=100
```
### Image Details
```
https://picsum.photos/id/0/info
https://picsum.photos/seed/picsum/info
```