lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> 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