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

https://github.com/prashanth-up/pfx

PFX or Python-Effects is a PyPI Package which helps in Standard Imaging Techniques.
https://github.com/prashanth-up/pfx

image-manipulation image-processing pypi-package python

Last synced: 5 months ago
JSON representation

PFX or Python-Effects is a PyPI Package which helps in Standard Imaging Techniques.

Awesome Lists containing this project

README

          

# PFX ![PyPI - License](https://img.shields.io/pypi/l/PFX) ![PyPI](https://img.shields.io/pypi/v/PFX)

PFX or Python-Effects is a PyPI Package which helps in Standard Imaging Techniques.

Check it out at : https://pypi.org/project/PFX/
## How to download :
Enter either of the pip commands on your console to install it.

`pip install PFX` **or** `pip install pfx`

## How to use
PFX can apply various effects to a given image
Following commands can be used:

> **The result will be saved in the same file path, a prompt will also be shown as to where the file is saved!**

#### 1. To convert an image into black and white :
```
pfx -bg "filepath.png"
```
**or**
```
pfx -black_white "filepath.png"
```

#### 2. To pixelate the given image :
```
pfx -p "filepath.png"
```
**or**
```
pfx -pixelate "filepath.png"
```
#### 3. To blur the given image :
```
pfx -b "filepath.png"
```
**or**
```
pfx -blur "filepath.png"
```
#### 4. To blur the given image's edges :
```
pfx -be "filepath.png"
```
**or**
```
pfx -bluredge "filepath.png"
```
#### 5. To create a thumbnail of the given image :
```
pfx -tn "filepath.png"
```
**or**
```
pfx -thumbnail "filepath.png"
```
#### 6. To create a PDF of the given image :
```
pfx -pdf "filepath.png"
```
**or**
```
pfx -makepdf "filepath.png"
```
## TL;DR
Run the following snippet for command list :
```
pfx -h
```
Then help yourself!
## Any Issues:
- This is the first draft of the PYPI package.

- This is prone to bugs. Let me know if any issues come up.

- PFX is a dumb name, waiting for the real name's ownership to clear up.
## More imaging effects arriving soon...
- Feel free to share any open ideas!