[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: too many items in a constructor
- From: Roberto Ierusalimschy <roberto@...>
- Date: Wed, 29 Sep 2004 16:14:40 -0300
> By diabolical luck (or lack of it) though the biggest thing I had tried
> to load so far was a 256x256 RGBA image which has 65536 4-component
> pixels for a total of 262144 elements which is *right on* the limit.
Can't you format that table as a table with 65536 subtables, each with
the 4 components of a pixel? (Or to pack the 4 components into a
single string or number?)
-- Roberto