linux - ImageMagick -liquid-rescale option error -


i want use seam carving, , found imagemagick maybe choice.
install imagemagick source this indicate.

my problem is: when type command
convert logo_trimmed.jpg -liquid-rescale 75x100%\! logo_lqr.jpg
gives following error:
convert: delegate library support not built-in 'logo_trimmed.jpg' (lqr) @ error/resize.c/liquidrescaleimage/1900.

i thought may because lack of liblqr support, go liquid rescale install it
, make uninstall imagemagick , install again.
however, problem remains same.

can tell me how make convert -liquid-rescale works?
hint.

after installing liblqr, have install imagemagick running configure prior make, see build instructions here:

http://www.imagemagick.org/script/install-source.php#unix

if don't run configure not pick new library.

and after you've compiled imagemagick check lqr delegate library installed running:

convert -list configure | grep -i "delegates" 

and seeing lqr listed there.


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -