About PyRim
PyRim is a Simple and Efficient Image Manipulation Module.
Author : Rounik Mondal
Version : 0.1
Installation
pip install pyrim
Funtions Used
rotateImage --> Takes two positional argument (picture : str, degree : int)
blurImage --> Takes two positional argument (picture : str, intensity : int)
contourImage --> Takes one positional argument (picture : str)
edgeEnhanceImage --> Takes two positional argument (picture : str)
embossImage --> Takes two positional argument (picture : str)
findEdgesImage --> Takes two positional argument (picture : str)
Arguments Used
picture --> str : ImageSource of the image file with format which needs to be edited
degree --> int : Degree to which the picture should be rotated in "rotateImage" Method
intensity --> int : Intensity of the blur which should be implemented on the image in "blurImage" Method
How To Use
import pyrim
pyrim.rotateImage("yourImage.format", int)
pyrim.blurImage("yourImage.format", int)
pyrim.contourImage("yourImage.format")
pyrim.edgeEnhanceImage("yourImage.format")
pyrim.embossImage("yourImage.format")
pyrim.findEdgesImage("yourImage.format")
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
MIT
Copyright (c) Rounik Mondal, All Rights Reserved