Page 1 of 1

System Beeps when using Magick++

Posted: 2010-05-31T09:01:52-07:00
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.

Re: System Beeps when using Magick++

Posted: 2010-05-31T09:29:46-07:00
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'.

Re: System Beeps when using Magick++

Posted: 2010-05-31T12:35:13-07:00
by Ebonair
Thank you very much!