Metadata-Version: 2.1
Name: student_imgutils
Version: 0.3.7
Summary: A library for simple and esily editing an image in python
Home-page: https://github.com/ErikVonW/Biblioteca-Imgutils
Author: Erik von Wangenheim
Author-email: 
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# imgutils

A library for quickly and easily making small edits to images

## Features
- Rotate image: function "rotate", insert str (image) and int (angle of rotation)
- Invert image horizontaly: function "flip", insert str (image)
- Add saturation: function "saturate", insert str (image) and int (saturation value)
- Add blur: function "blurring", insert str (image)
- Add sharpen: function "sharpening", insert str (image)
- Add color filter: function "color_filter", insert str (image), float (filter stenght, 1.0 to 0.0), and int value for the colors (red, green, blue)
- Add grayscale: function "gray_scale", insert str (image)
- Add color border: function "borderer", insert str (image), int (border size), and int value for the colors (red, green, blue)
- Collect image data (returns three str with the image format, size and mode): function "image_data_get", insert (image)
