Search found 12 matches

by jonotrain
2019-05-31T16:43:34-07:00
Forum: Users
Topic: Compile not working
Replies: 9
Views: 7706

Re: Compile not working

I also get " -bash: magick: command not found" for that
by jonotrain
2019-05-31T16:22:42-07:00
Forum: Users
Topic: Compile not working
Replies: 9
Views: 7706

Re: Compile not working

convert -version returns "-bash: convert: command not found" - and so does everything else I try related to magick.

If I remember correctly it was homebrew - but it might have been MacPorts.
by jonotrain
2019-05-31T13:46:12-07:00
Forum: Users
Topic: Compile not working
Replies: 9
Views: 7706

Re: Compile not working

I'll add also that I have executables that call on the Magick++ libraries which are still working, but when I try to compile code it fails
by jonotrain
2019-05-31T13:30:24-07:00
Forum: Users
Topic: Compile not working
Replies: 9
Views: 7706

Re: Compile not working

I'm using OSX 10.10.5 - it's hard for me to check my imagemagick version because all of my bash magick commands are not working - but the dylib I have installed is libMagick++-6.Q16.8.dylib. It's hard to say what caused it, but one thing I did recently is install mysql using homebrew, and I noticed ...
by jonotrain
2019-05-20T09:49:34-07:00
Forum: Users
Topic: Compile not working
Replies: 9
Views: 7706

Compile not working

I had been using the same command line for compiling and it was working fine, but now all of a sudden I get the following error: -bash: Magick++-config: command not found The compile line I am using is as follows: g++ -std=c++11 -I /usr/include/ -I /curlcpp/include -L /usr/lib -L /curlcpp/src `Magic...
by jonotrain
2019-03-19T13:40:02-07:00
Forum: Users
Topic: Linking to the libraries of a newer version
Replies: 0
Views: 10042

Linking to the libraries of a newer version

I have executables that were written to work with version 6.5 of ImageMagick. I tried installing the older version but unfortunately I get errors whenever I try to make or make install any of the 6.5 packages. So, I installed 6.9 using MacPorts and tried using install_name_tool to just change the li...
by jonotrain
2015-06-18T10:28:09-07:00
Forum: Magick++
Topic: Creating random noise with Magick++
Replies: 3
Views: 11336

Re: Creating random noise with Magick++

Thanks Loki - is there an equivalent in Magick++? The syntax for that is what I'm wondering. If anyone knows, it would be extremely helpful to my present project.
by jonotrain
2015-06-18T08:57:52-07:00
Forum: Magick++
Topic: Creating random noise with Magick++
Replies: 3
Views: 11336

Creating random noise with Magick++

I've found a lot of documentation online about using ImageMagick's command line functions to create images of random noise, but have not been able to figure out how to reproduce that in Magick++. ImageMagick has the +noise method Random: convert -size 100x100 xc: +noise Random random.png I would lik...
by jonotrain
2015-06-11T20:31:35-07:00
Forum: Magick++
Topic: Using Magick++ to determine if an image contains multiple frames
Replies: 3
Views: 9952

Re: Using Magick++ to determine if an image contains multiple frames

does an equivalent function exist for magick++? I haven't found it in the documentation.
by jonotrain
2015-06-11T20:17:07-07:00
Forum: Magick++
Topic: Using Magick++ to determine if an image contains multiple frames
Replies: 3
Views: 9952

Using Magick++ to determine if an image contains multiple frames

I am using magick++ on my website to process uploaded images. I would like to be able to test if an uploaded file contains multiple frames (whether animated or still) and to process them differently depending. What is the most efficient way to perform this test? All I could think of would be: std::l...
by jonotrain
2015-06-08T14:28:10-07:00
Forum: Magick++
Topic: Using Magick++ with CGI to set the SRC of an IMG
Replies: 1
Views: 8048

Re: Using Magick++ with CGI to set the SRC of an IMG

Nevermind - this code is working now. I was handling the parameters incorrectly
by jonotrain
2015-06-07T21:30:04-07:00
Forum: Magick++
Topic: Using Magick++ with CGI to set the SRC of an IMG
Replies: 1
Views: 8048

Using Magick++ with CGI to set the SRC of an IMG

I am trying to create a CGI program capable of generating the data which will provide the source of an image. I do not want to generate an image file then display that file, but rather output the information as image/jpg. I have written a program which I believe can send out the image information, b...