Skip to content

Instantly share code, notes, and snippets.

@ahmadhasankhan
Last active December 4, 2022 18:57
Show Gist options
  • Select an option

  • Save ahmadhasankhan/3d172098a8890f3a9851ced1690d4df6 to your computer and use it in GitHub Desktop.

Select an option

Save ahmadhasankhan/3d172098a8890f3a9851ced1690d4df6 to your computer and use it in GitHub Desktop.

Revisions

  1. ahmadhasankhan revised this gist Apr 16, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion ImageMagick-6.7.7-10.md
    Original file line number Diff line number Diff line change
    @@ -20,7 +20,7 @@ cd ~/src

    Download the Binary:

    wget http://www.imagemagick.org/download/releases/ImageMagick-6.7.7-10.tar.xz
    `wget http://www.imagemagick.org/download/releases/ImageMagick-6.7.7-10.tar.xz`

    Extract the tar

  2. ahmadhasankhan renamed this gist Apr 16, 2019. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. ahmadhasankhan created this gist Apr 16, 2019.
    44 changes: 44 additions & 0 deletions installation.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,44 @@
    Remove imagemagick

    ```
    sudo apt-get --purge remove imagemagick
    sudo apt autoremove
    ```
    Install Required package:
    ```
    sudo apt-get install build-essential
    sudo apt-get install checkinstall
    sudo apt-get install libgs-dev
    sudo apt-get install ghostscript
    ```

    Create a new directory
    ```
    mkdir ~/src
    cd ~/src
    ```

    Download the Binary:

    wget http://www.imagemagick.org/download/releases/ImageMagick-6.7.7-10.tar.xz

    Extract the tar

    ```
    tar xf ImageMagick-6.7.7-10.tar.xz
    cd ImageMagick-6.7.7-10/
    ```

    Proceed to instaltion:

    ```
    sudo ./configure --with-gslib=yes
    sudo make
    sudo checkinstall
    sudo ldconfig
    ```

    Verify the version:

    `identify -version`