Author Topic: program to convert bmp into Nspire c-arrays?  (Read 4391 times)

0 Members and 1 Guest are viewing this topic.

Offline lkj

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 485
  • Rating: +58/-1
    • View Profile
program to convert bmp into Nspire c-arrays?
« on: January 30, 2012, 07:52:15 am »
I've been looking for a program which converts .bmp files into c-arrays which are for the nspire (not for the z80 calcs), that means with 4 bits per pixel. But I've only found z80 and 68k programs which even don't work on a recent pc.
So I asked myself if every one who has made games for the nspire has written every sprite by hand?

Offline hoffa

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 322
  • Rating: +131/-13
    • View Profile
Re: program to convert bmp into Nspire c-arrays?
« Reply #1 on: January 30, 2012, 07:56:50 am »
I'm using a self-made tool, except it converts to normal RGB data (i.e. you'll have to parse the data in the program itself). http://hoffa.franceserv.fr/image2bytes/

Offline compu

  • LV5 Advanced (Next: 300)
  • *****
  • Posts: 275
  • Rating: +63/-3
    • View Profile
Re: program to convert bmp into Nspire c-arrays?
« Reply #2 on: January 30, 2012, 07:58:13 am »

Offline lkj

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 485
  • Rating: +58/-1
    • View Profile
Re: program to convert bmp into Nspire c-arrays?
« Reply #3 on: January 30, 2012, 08:30:23 am »
Thanks hoffa and compu!