You're viewing old version number 21. - Current version
Installing and using ImageMagick
Jun 23, 2015
*On my local Linux Mint (Ubuntu)
apt-get install imagemagick perlmagick
If package not found, then first do:
apt-get update
and then try the install again.
EXIF Data
http://stackoverflow.com/questions/1708417/how-can-i-extract-exif-data-using-perlmagick
http://hacktux.com/read/remove/exif
may want:
apt-get install libimage-exiftool-perl
exiftool coreopsis.jpg
will provide some info about the image.
but this might be better:
apt-get install jhead
jhead coreopsis.jpg
if want to remove exif data from an image:
After ImageMagick is installed, you will have /usr/bin/mogrify available. The mogrify command can be used to strip Exif data from images.mogrify -strip imagename.jpg
If you need to process a large number of files, use find and xargs:
find ./folder_of_images -name '*.jpg' | xargs mogrify -strip
Perl usage
http://www.imagemagick.org/source/examples.pl
did not need to execute these commands.
apt-get install libconfig-yaml-perl
@perl -MCPAN -e 'install Image::Magick'
install CPAN
reload CPAN
check Ubuntu version
lsb_release -a
orientation
Value 0th Row 0th Column
1 top | left side
2 top | right side
3 bottom | right side
4 bottom | left side
5 left side | top
6 right side | top
7 right side | bottom
8 left side | bottom
Links
http://www.imagemagick.org/script/formats.php
http://www.imagemagick.org/script/perl-magick.php
http://www.imagemagick.org/script/examples.php
http://www.imagemagick.org/source/examples.pl
http://www.graphicsmagick.org/perl.html
http://sylvana.net/jpegcrop/exif_orientation.html
Using Client-side Javascript to Resize an Image
http://stackoverflow.com/questions/2303690/resizing-an-image-in-an-html5-canvas
http://davidwalsh.name/resize-image-canvas
http://stackoverflow.com/questions/6150289/how-to-convert-image-into-base64-string-using-javascript
http://jsfiddle.net/handtrix/YvQ5y/
https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toDataURL
http://www.sitepoint.com/html5-ajax-file-upload/
http://stackoverflow.com/questions/9395911/sending-a-file-as-multipart-through-xmlhttprequest
From JR's : articles
206 words - 2276 chars
- 1 min read
created on
updated on
- #
source
- versions