Hi
I'm try to read an JPEG image from a bank. This image can be anywhere in the bank, but i will know it start location and filesize.
an example that works..
but what if there was a lot of other data around that image file. I want to do something like this.. but I know this doesn't work.
Any ideas anyone?
I'm try to read an JPEG image from a bank. This image can be anywhere in the bank, but i will know it start location and filesize.
an example that works..
b:TBank = LoadBank("input.jpg") p = LoadPixmap(b) SavePixmapJPeg p,"output.jpg"
but what if there was a lot of other data around that image file. I want to do something like this.. but I know this doesn't work.
b:TBank = LoadBank("input.jpg") bp = bankbuf(b) p = LoadPixmap(bp[0]..bp[banksize(b)-1]) SavePixmapJPeg p,"output.jpg"
Any ideas anyone?