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.
- Host: GitHub
- URL: https://github.com/prashanth-up/pfx
- Owner: prashanth-up
- License: mit
- Created: 2020-05-06T17:01:08.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-11T16:49:55.000Z (almost 5 years ago)
- Last Synced: 2025-11-02T16:16:37.662Z (8 months ago)
- Topics: image-manipulation, image-processing, pypi-package, python
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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!