Page 1 of 1

Image Magic Redmond Style

Posted: 08 Jul 2014, 17:46
by Snorkasaurus
Thanks to v60's tips I have come up with some Windows based image magic of my own. :dance:

I found Exif Tool by Phil Harvey which I use to get rid of information put in to images by my camera. I usually take fewer than a dozen photos at a time so to make it easy on myself I made a "Send To" shortcut so I could quickly remove EXIF information from within an Explorer window. In C:\Documents and Settings\User\SendTo I created a shortcut called EXIF Remover

Code: Select all

%windir%\exiftool.exe -r -overwrite_original -all= -IFD0:XPAuthor="Snorkasaurus" -IFD0:XPComment="Metadata scrapers are douchebags."

Image

This will work on individual images as well as recursively if you run it on a folder... it also adds in some [XP specific] smartass comments in case anyone is trying to scrape the metadata off my images. Then of course there is ImageMagick... pretty chubby at 120MB but I haven't seen a better way to do v60's cute rounded corner trick. I created a batch file C:\path\round_corner.bat that looks like this

Code: Select all

convert %1 -alpha set -virtual-pixel transparent -channel A -blur 0x8 -threshold 50%,100% +channel %1_rounded.png

and then made a shortcut to it in my "Send To" folder. Obviously it creates a new PNG image that is renamed after the original with "_rounded.png" on the end of the name. Careful, this photo is funny.
Image


Have fun folks,
Snork.

Re: Image Magic Redmond Style

Posted: 08 Jul 2014, 19:11
by viking60
Great stuff! :s
Keep it coming - Windows people are people too... :mrgreen: Same trick in Windows and in Linux - no discrimination.
And I really love that photo! (if you gotta go...you gotta go)
This is a IT killer site not a Linux killer site, so Windows tips are (more than) welcome.
So far I just have found Linux to be so very superior - but Windows deserves a fighting chance.

I will look into that Exif tool now (and possibly start a new thread).