|
From: Harald H. <h.h...@tu...> - 2005-11-13 00:34:09
|
On Sat, 12 Nov 2005, Ethan A Merritt wrote: > On Saturday 12 November 2005 03:11 pm, Ethan A Merritt wrote: > > I'd think you can do it now with no extra code at all: > > > > plot "< convert pic.jpeg rgb:-" with image > > Hey, it works! > > plot '< convert tux.gif rgb:-' binary filetype=rgb array=60x70 \ > format="%uchar %uchar %uchar" flipy u 1:2:3 with rgbimage I'm not totally convinced. This is better: plot '< convert tux.gif rgb:-' binary filetype=rgb \ array=`identify -format '%wx%h' tux.gif` \ format="%uchar %uchar %uchar" flipy u 1:2:3 with rgbimage notitle > It would be nice if that long combination of options had some > shorter form, though. Oh yes! :-) Best regards Harald -- Harald Harders h.h...@tu... http://www.harald-harders.de |