From 776f3eee3cca1791a1b31cca464ad401f4f286c0 Mon Sep 17 00:00:00 2001 From: Xevion Date: Sat, 3 Aug 2019 22:20:33 -0500 Subject: [PATCH] readme full update --- README.md | 38 ++++++++++++++++++++++++++++++++++++++ main.py | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b35d26..244299b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,45 @@ # sharex-quickzoom +## The Repository + ![trtx: you can radially blur any image and it'll be funny](./resources/screenshot.png) The purpose of this project is to simply provide an easy way to apply a blur effect to an image using the ShareX application. The reasoning for zoom is mostly for personal humor. The effect may reach into being just zoom for radially, depending on how far I can get this project going. + +## Modules in use + +In case you wish to use this repo, these are the utilties you will require. + +### [./main.py](./clean.py) + +**os** - Path managemennt + +**sys** - Path Management + +**argparse** - Parsing arguments from command line + +**subprocess** - Issuing commands to ImageMagick + +### [./clean.py](./clean.py) + +**os** - Path Management + +**sys** - Path Management + +**send2trash** - sending files to recycle bin instead of permanently deleting + +## Resources + +Thanks to ImageMagick for giving very useful utilities involving image manipulation. + +I used commands described [here](https://www.imagemagick.org/Usage/mapping/#blur) to figure out how it works and apply it, I didn't do all that much to learn it, but it was useful none-the-less. + +[Blurring mechanics](https://www.imagemagick.org/Usage/mapping/#blur) | [Convert Command](https://imagemagick.org/script/convert.php) | [ImageMagick Commandline Utility](https://imagemagick.org) + +And thanks to ShareX for providing such excellent screenshot utilities. + +[ShareX GitHub](https://github.com/ShareX/ShareX/) | [ShareX Website](https://getsharex.com/) + +And of course, my friend, **trtx**, for inspiring me to make my dumb humor even more accessible. diff --git a/main.py b/main.py index 3569481..63a87fa 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,4 @@ -import os, sys, time, argparse, subprocess +import os, sys, argparse, subprocess # Simple tester for testing whether a file exists. # StackOverflow https://stackoverflow.com/a/51212150/6912830