https://github.com/soragui/py-image-tool
Image compose tools using python and more.
https://github.com/soragui/py-image-tool
image-processing pillow python
Last synced: 30 days ago
JSON representation
Image compose tools using python and more.
- Host: GitHub
- URL: https://github.com/soragui/py-image-tool
- Owner: soragui
- License: gpl-3.0
- Created: 2023-12-25T03:05:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-25T03:19:41.000Z (over 2 years ago)
- Last Synced: 2026-03-12T03:52:53.376Z (3 months ago)
- Topics: image-processing, pillow, python
- Language: Python
- Homepage:
- Size: 80.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> Image composition tools using Python
## Start
Install pip:
```bash
pip install -r requirements.txt
```
## Example
#### Compose image horizontally:
```python
composite_images(image_paths, horizon_compose, margin=10, padding=10, direction='horizontal')
```
Result:

#### Compose image vertically:
```python
composite_images(image_paths, vertica_compose, margin=10, padding=10, direction='vertical')
```
Result:

## Usage
|params||
|---|----|
|image_list|List of image to compose|
|output_image|Image Path for compose result|
|margin|Image Margin|
|padding|Image Padding|
|alignment|Left or Center|
|direction|Compose direction Vertical or Horizon|