comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » Re: Making a ginormous 54 panel plot...
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Return to the default flat view Create a new topic Submit Reply
Re: Making a ginormous 54 panel plot... [message #73817 is a reply to message #73815] Thu, 02 December 2010 06:39 Go to previous messageGo to previous message
Kenneth P. Bowman is currently offline  Kenneth P. Bowman
Messages: 585
Registered: May 2000
Senior Member
In article
<6fc9ecfb-a3ea-4afa-a371-186420318ec2@y3g2000vbm.googlegroups.com>,
OUWxGuesser <aaron.kennedy@und.nodak.edu> wrote:

> Sadly, the big array is too large for the memory. When I use the TV
> route and try to TVRD at the end, it spits out "TVRD: An error has
> occurred. Unable to complete command."

I still don't understand why are you using TV.

This code snippet reads a PNG file and creates a new PNG
file with the original image in a 2 x 2 tiling.

No TV or TVRD necessary.

Ken



IDL> img = READ_PNG('test.png')
% Loaded DLM: PNG.
IDL> help, img
IMG BYTE = Array[3, 1024, 612]
IDL> new_img = BYTARR(3, 2*1024, 2*612)
IDL> new_img[0,0,0] = img
IDL> new_img[0,1024,0] = img
IDL> new_img[0,1024,612] = img
IDL> new_img[0,0,612] = img
IDL> write_png, 'test1.png', new_img
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Re: problem calling histoplot
Next Topic: Re: Negative array indices

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Fri Oct 10 06:34:21 PDT 2025

Total time taken to generate the page: 0.31882 seconds