Hi. I am not sure if this is the correct forum for this, feel free to move this if it is not. In my Nspire programs, I am finding it to be a very time consuming job transferring from sprite drawings to code. I have some sprites drawn that are 24 by 24 pixels, but I dread the thought to converting these pics into code by typing in the individual color number in my declaration. (For example, a 4 by 4 sprite that is black in the first row and white in the second row would be declared as char sprite[4]={0,0,15,15}; ). 24 by 24 sprites would have 576 members in the declaration array and I dread having to do all of that work for five different sprites. I was wondering if there is a program available that will convert my sprites to code, or if not, how would I go about writing a program to do so? Thank you for your help!!