An open API service indexing awesome lists of open source software.

https://github.com/veralvx/thumber

Create thumbnails. Specify dimensions or aspect ratio. Resizes and blurs background if aspect ratio changes.
https://github.com/veralvx/thumber

aspect-ratio blur cover cover-image crop crop-image dimensions image image-blur image-processing images thumbnail thumbnail-generator thumbnails

Last synced: 2 months ago
JSON representation

Create thumbnails. Specify dimensions or aspect ratio. Resizes and blurs background if aspect ratio changes.

Awesome Lists containing this project

README

        

# Thumber

Create thumbnails. Specify dimensions or aspect ratio. If the aspect ratio from the input image is altered, fills the background with the same image, but blurred. Alternatively, just crop it without blur.

Install using pip:

```
pip install thumber
```

## Usage

```
thumber dimensions [--blur ]

thumber aspect [--blur ]

thumber crop {--ratio | --width --height }
```

Values for ``:

- `dimensions`
- `aspect`
- `crop`

Examples:

- Produce a 1920x1080 image:

```
thumber dimensions image.png 1920 1080 --blur=30
```

- Produce an image whose width is 1.778x the height:

```
thumber aspect image.png 1.778 --blur=30
```

The closer to 0, the lower is the blur effect

- Produce a cropped image, without blur in the background:

```
thumber crop image.png --ratio=1.778
```

```
thumber crop image.png --width=1920 --heigth=1080
```

## Gallery Examples

| `babel.webp` (1024x1024)| `babel-dimensions-1920x1080.webp` | `babel-aspect-0.5.webp` | `babel-aspect-2.webp` | `babel-cropped-1920x1080.webp`|
|:----:|:----:|:-----:|:----:|:----:|
| ![](assets/babel.webp)| ![](assets/babel-dimensions-1920x1080.webp) | ![](assets/babel-aspect-0.5.webp) | ![](assets/babel-aspect-2.webp) | ![](assets/babel-cropped-1920x1080.webp)

## License

This project is licensed under the MIT License.