Skip to content

Commit a8ba69f

Browse files
committed
screenshot documentation
1 parent 1b370a2 commit a8ba69f

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

public/images/evolution/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Evolution images
2+
3+
The images were taken as [screenshots in Google Chrome developer tools](https://developer.chrome.com/docs/devtools/device-mode#screenshot) using a [custom device](https://developer.chrome.com/docs/devtools/device-mode#custom):
4+
- Width: 1920
5+
- Height: 1080
6+
- Device pixel ratio: 1
7+
8+
Then they were converted into WEBP using [FFmpeg](https://www.ffmpeg.org/).
9+
10+
> [!TIP]
11+
> Magic command to convert all PNGs into WEBPs:
12+
> ```bash
13+
> find . -name "*.png" -exec sh -c 'ffmpeg -yi "$1" "${1%.png}.webp"' _ {} \;
14+
> ```

public/images/promo/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Promo images
2+
3+
The images were taken as [screenshots in Google Chrome developer tools](https://developer.chrome.com/docs/devtools/device-mode#screenshot) using a [custom device](https://developer.chrome.com/docs/devtools/device-mode#custom):
4+
- Width: 1350
5+
- Height: 900
6+
- Device pixel ratio: 4
7+
8+
Then they were converted into WEBP using [FFmpeg](https://www.ffmpeg.org/).
9+
10+
> [!TIP]
11+
> Magic command to convert all PNGs into WEBPs:
12+
> ```bash
13+
> find . -name "*.png" -exec sh -c 'ffmpeg -yi "$1" "${1%.png}.webp"' _ {} \;
14+
> ```

0 commit comments

Comments
 (0)