Search found 2 matches

by mikeatimage
2016-12-29T09:11:03-07:00
Forum: Developers
Topic: windows : reuse of IMDisplay window
Replies: 2
Views: 9696

Re: windows : reuse of IMDisplay window

Thanks, snibgo, I used your taskkill idea but also cmdow to manipulate windows. (cmdow is easily available) I've copied in the windows bat file below if anyone wants to know how I added user-typed-in titles to my numerous jpg photos. (Helps when the photos are being viewed on a photoframe). Magick i...
by mikeatimage
2016-12-25T06:15:37-07:00
Forum: Developers
Topic: windows : reuse of IMDisplay window
Replies: 2
Views: 9696

windows : reuse of IMDisplay window

My windows command (cmd) batch file comprises the following lines: for /r %%f in (*.jpg) do ( magick convert "%%f" -thumbnail 324x248 win: pause ) When I run this code (windows NT,7,8,10 etc), a new IMDisplay window is opened (and a new imdisplay.exe process is created) each time a new ima...