Metadata-Version: 2.4
Name: voidimage
Version: 0.1.1
Summary: Tiny image drawing engine
Author: Voidbuild
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pygame
Dynamic: license-file

img

A tiny Python library for drawing images on screen with simple commands.

Built on top of Pygame.

Installation:
    pip install img
Usage
    from img import Img

   i = Img()
   i.draw("image.png", 100, 150, 200) #(image_name,x,y,size_in_pixel)
   i.run()
