Questions tagged as 'imagemagick'

1
answer

It is possible to create image thumbnails with pure Node.js

Well I found a library, which is great for image manipulation, and works perfectly, in this case GraphicsMagick for node.js , but there is a problem because there are dependencies of other softwares installed on the machine where the node wil...
asked by 11.07.2014 / 02:40
1
answer

Set export of an EPS to JPEG in Magick.NET

I'm using the Magick.NET library to convert an EPS file > JPEG. However the result is not nice because regardless of the resolution (DPI) and size (Width and Height) that I put the image is pixelated and with the wrong colors ... Here is an...
asked by 25.06.2018 / 20:28
0
answers

Passing result of compare -metric to variable - Picture from IMAGEMAGICK

I'm comparing two images using ImageMagick on the LINUX Terminal. When I type in the terminal line this (below) it returns me a value: $ compare -metric mae 0.jpg 2.jpg null: But I can not put this value in a variable and then make a com...
asked by 18.12.2017 / 04:30
1
answer

___ ___ erkimt Installing ImageMagick on windows 7 [32-bit]? ______ qstntxt ___
How do I install and configure %code% on windows 7 32bit , and how do I put the commands in it?

In my case, I need to put the command:

%pre%     
______ azszpr20688 ___

For Windows 7, 32 Bit, use the following installation:

ImageMagick for Windows 32 Bit

Install normally with the default options.

After installing, go to the Windows console (cmd).

Type the following command and see if you have the same return as the image below.

%pre%

Iftheabovecommandworks,thenfollowthesesteps:

Step1:Createafolderandplacethefilestoresizewithinit.NotethatinmycasethereareseveralBMPfiles.

Step2 : Create a folder within the current folder. This folder will receive the resized files. I gave the small name, as shown below.

Step3:Runthecommandmogrify-pathsmall-resize50%*.bmp

Noteintheimagebelowthesizeofthefilesbeforetheconversion.Alsonoticethecommandlineabove.

Step4 : Confirmation of the result. Enter the small folder, run a dir and see how the file size has changed.

    
___

How do I install and configure ImageMagick on windows 7 32bit , and how do I put the commands in it? In my case, I need to put the command: $ mkdir -p resultado $ mogrify -path resultado -resize 50% *.jpg     
asked by 09.06.2014 / 20:12
1
answer

Image Upload with ImageMagick

Using the Imagick library, can you upload an image directly from the upload form? That is, without having to first move it to a folder and specify the path in Imagick . I'm trying this way, but I get the error Can not process...
asked by 04.09.2018 / 20:13
1
answer

Error in readImage using Imagick ()

I'm trying to convert a pdf into image using the Imagick library as follows: <? header('Content-type: image/jpeg'); $imagick = new Imagick(); // O myfile se encontra na mesma pasta do arquivo que estou executando $imagick->readImage('myf...
asked by 11.11.2014 / 12:09
1
answer

how to install imagemagick on macintosh (Xampp)

I was trying to install imagemagick on the mac, I opened the terminal and executed the following command ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)". Then I checked brew install imagemagick b...
asked by 06.05.2017 / 23:10
0
answers

Save an image and generate Thumb with nodejs

I'm trying to burn an image to disk and after that generate a thumb of the image that was saved. To do this I save the normal base64 image that was sent and in the callback of fs.writeFile I call the function to generate the thumb. I'm try...
asked by 10.04.2017 / 20:45
0
answers

php ImageMagic can not use GhostScript to render PDF

In my hosting, ImageMagic renders PDF to JPEG normally. But I need to make it work in my local MAMP testing - making sites without local testing sucks! ImageMagic is apparently OK on my MAMP running on Mac OS X Lion. The error appears as follows...
asked by 14.05.2015 / 15:19
1
answer

Images compressed with Imagick do not pass the PageSpeed test

What parameters can I add to Imagick to improve image compression? Even with this code, PageSpeed Google continues to accuse images need to be reduced. $image = new \Imagick($request->img->path()); $image->setImageF...
asked by 05.09.2018 / 04:17