Can myImage.display() not halt the execution of the program?

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
huelter
Posts: 2
Joined: 2015-11-17T08:42:24-07:00
Authentication code: 1151

Can myImage.display() not halt the execution of the program?

Post by huelter »

Hi.

I am wondering if there is a way for ImageMagick to continue program execution after calling display()? The window has to be closed for the program to continue at the moment.

What I want to do is to display an image, modify it, and redraw the image on the same window. Is this possible?

Thanks!
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Can myImage.display() not halt the execution of the program?

Post by fmw42 »

Code: Select all

convert image show:
will allow execution to continue on Unix systems. But I do not know if you can rewrite to the open window.

See http://www.imagemagick.org/Usage/files/#show
huelter
Posts: 2
Joined: 2015-11-17T08:42:24-07:00
Authentication code: 1151

Re: Can myImage.display() not halt the execution of the program?

Post by huelter »

Thank you for replying.

That command does allow execution, but I can't redraw on it. Should I request a feature?

Edit: I found a way using

Code: Select all

display -remote image &
Post Reply