|
From: Thomas S. <t.s...@fz...> - 2010-06-03 14:30:26
|
the hard limits for terminals which produce pixel graphics are based on the graphics file format: GIF: 2 Bytes unsigned for width and height, must be <2^16 (=65536) PNG: 4 Bytes signed for width and height, must be <2^31 (=2147483648) so there is no ~65k limit for PNG files. just check this with 'size 100000,100', it should work. but you may run into memory problems with a large image with reasonable aspect ratio, e.g. 100000*75000 pixels with 48bit each require ~42GByte, this may cause problems... ben.gpt wrote: > > I seem to be running into a hard width limit of ~65k for png files > but have not found any documentation that indicates what the hard > limits are for various terminals. > > Have I overlooked something? > > Thanks in advance... > -- > ------------------------------ > be...@BL... Ben Liberman > ------------------------------ > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > _______________________________________________ > gnuplot-info mailing list > gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > > -- View this message in context: http://old.nabble.com/looking-for-max-terminal-sizes-for-png%2C-jpg%2C-and-other-file-output-terminals-tp28763216p28768309.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |