Omnimaga

Calculator Community => TI Calculators => Axe => Topic started by: Cram on December 20, 2011, 11:16:48 pm

Title: display a picture problem
Post by: Cram on December 20, 2011, 11:16:48 pm
hi, i simply want to display my picture that i converted to .8xi (named Pic1) but when i tried this:
Code: [Select]
[Pic1]->Pic0MN
Pic0MN->DispGraph
Pause 3600

it dont work, what is the right way?
Title: Re: display a picture problem
Post by: epic7 on December 20, 2011, 11:18:46 pm
You have to use the copy command to copy to the buffer

Copy(Pic0MN,L6,768)
DispGraph
Pause 3600
Title: Re: display a picture problem
Post by: Cram on December 20, 2011, 11:23:40 pm
yeah it work now thx for your fast answer! ;D
Title: Re: display a picture problem
Post by: Hayleia on December 21, 2011, 03:28:17 am
You have to use the copy command to copy to the buffer

Copy(Pic0MN,L6,768)
DispGraph
Pause 3600
With that method, you used the buffer. But if you just want to display a picture without erasing the buffer, then
   DispGraph(Pic0MN)
   Pause 3600
will do it
In fact, PTR->DispGraph was changed to DispGraph(PTR), this is why it didn't work
Title: Re: display a picture problem
Post by: Cram on December 21, 2011, 12:47:25 pm
ah ok both code is working but your take less places so it will be better thx :P
Title: Re: display a picture problem
Post by: saintrunner on December 21, 2011, 03:29:15 pm
YEAH OPTIMIZATIONS!!!