Re: Viewing multiple .png files simultaneously
- From: Michal Nazarewicz <mina86@xxxxxxx>
- Date: Tue, 18 Sep 2007 14:08:29 +0200
philbo30 <masferfc@xxxxxxxxx> writes:
I'm sure this is easy with the right tool, I need to find the tool; in
advance, I apologize for the rather vague description...
Here's what I need to do:
I have an application that generates 4 graphs in .png format; I need
to call "something" from my application to more-or-less simultaneously
display those graphs in 4 individual X-windows as soon as the data
processing is done. All .png graphs are in the local directory where
the app runs.
Do you really need 4 individual windows? Because you might try to join
those graphs into single image using ImageMagick, ie.:
#v+
convert -size 100x100 \( xc:red xc:white +append \) \
\( xc:white xc:red +append \) -append miff:- | \
display -
#v-
or:
#v+
convert -size 100x100 \( xc:red xc:white +append \) \
\( xc:white xc:red +append \) x:
#v-
Your images goes where xc:red, xc:white are.
--
Best regards, _ _
.o. | Liege of Serenly Enlightened Majesty of o' \,=./ `o
..o | Computer Science, Michal "mina86" Nazarewicz (o o)
ooo +--<mina86*tlen.pl>---<jid:mina86*chrome.pl>--ooO--(_)--Ooo--
.
- Prev by Date: Re: Viewing multiple .png files simultaneously
- Next by Date: Re: Viewing multiple .png files simultaneously
- Previous by thread: Re: Viewing multiple .png files simultaneously
- Next by thread: Configuration file parser
- Index(es):
Relevant Pages
|