Metadata-Version: 2.1
Name: PyWatermark
Version: 0.1.4
Summary: A library to watermark your images easily.
Home-page: https://github.com/ieshaan12/watermark
Author: Ieshaan Saxena
Author-email: ieshaan1999@gmail.com
License: MIT
Download-URL: https://github.com/ieshaan12/watermark/archive/v0.1.4.tar.gz
Description: ## PyWatermark
        
        A python library to watermark your images!
        
        ### Installation
        
        `pip install PyWatermark`
        
        ### Features
        
        This library exploits the usefulness of pillow to watermark images. It's an easy tool if you want to automate the watermarking of many images at once.
        
        ### Usage
        
        ```
        from PyWatermark import waterMarkImages, getAvailableFonts
        
        imageFile = "image.jpg"
        imageOutputPath = "/Desktop" # write your output folder path here 
        text = "Hello World" # Whatever text you want to watermark
        
        # You can adjust the font here from the given fonts or just
        # put in your own font path - a .ttf file
        # Other parameters you can adjust are position, size, opacity
        outFile = waterMarkImages(imageFile, imageOutputPath, text)
        
        print(getAvailableFonts()) # prints out available fonts
        
        ```
        ### Contributing
        
        Feel free to make suggestions, raise pull requests, and report issues. After all we're human and there can be problems with this library. Optimizing this is very appreciated.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
