Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 695 Bytes

README.md

File metadata and controls

19 lines (11 loc) · 695 Bytes

Paint-Application

A simple paint application in python

This is a simple Paint application made using python .

Screenshort of app Canvas

The image is saved using 'pyscreenshort' , and it can be saved in formats like jpeg,gif,png etc.

For windows users: The 'save' button would work well only if you change the line 132 as follows:

filename = asksaveasfilename(initialdir = "/",title = "Select file",filetypes = (('JPEG', ('*.jpg','*.jpeg','*.jpe','*.jfif')),('PNG', '*.png'),('BMP', ('*.bmp','*.jdib')),('GIF', '*.gif')))