System Beeps when using Magick++

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Ebonair

System Beeps when using Magick++

Post by Ebonair »

I'm using some very simple Magick++ commands:

Code: Select all

image.read("x:root");
image.write("test.png");
And I get a system beep each time they're called. (So two beeps total for the above code) This is quite annoying to my co-workers, is there any way to tell Magick++ to be silent?

I'm using Linux (Centos 5). I notice that the import command also produces a beep.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: System Beeps when using Magick++

Post by magick »

We added the x:silent option to ImageMagick 6.6.2-2 Beta (available sometime tomorrow) to silence the beep. Use defineValue() to set it to 'true'.
Ebonair

Re: System Beeps when using Magick++

Post by Ebonair »

Thank you very much!
Post Reply