Skip to content

Instantly share code, notes, and snippets.

@wmakeev
Last active May 26, 2023 15:31
Show Gist options
  • Save wmakeev/2e667f70caa9e1aed67ecf9311d43de4 to your computer and use it in GitHub Desktop.
Save wmakeev/2e667f70caa9e1aed67ecf9311d43de4 to your computer and use it in GitHub Desktop.
Linux image utilities setup #ufraw #imagemagick #exiftool

ImageMagick

ImageMagick PNG delegate install problems

Install delegates

sudo apt-get install build-essential checkinstall libx11-dev libxext-dev zlib1g-dev libpng-dev libjpeg-dev libfreetype6-dev libxml2-dev

Dash >> Software & Updates >> Source Code - what for?

How to Install ImageMagick on Ubuntu

Install some tools

sudo apt-get install build-essential checkinstall && apt-get build-dep imagemagick -y

Build imagemagick and install

sudo wget https://www.imagemagick.org/download/ImageMagick-7.1.1-10.tar.bz2

sudo tar xvf ImageMagick-7.1.1-10.tar.bz2 && cd ImageMagick-7.1.1-10

sudo ./configure

sudo make clean

sudo make

# not work if rebuild
sudo checkinstall -D --install=yes --fstrans=no --pakdir "$HOME/imagemagick_build" --pkgname imagemagick --backup=no --deldoc=yes --deldesc=yes --delspec=yes --default --pkgversion "7.1.1-10"

# or
sudo checkinstall

ldconfig /usr/local/lib
# or
ldconfig

magick -help
magick -version

[wait]

sudo make distclean && sudo ldconfig

UfRaw

includes ufraw-batch

add-apt-repository ppa:dhor/myway
apt-get update
apt-get install ufraw -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment