I am attempting to Load images to my TouchSlide with the Image Loader built into the Antipasto IDE. I run the code and transfer the files with the Image Loader. I get a prompt that says "Nobody There" after I the bitmap is sent and parsed.
After that the touchslide shows some default placeholder image at the location my loaded image is supposed to show. Does anyone have a fix for this I know that most forums reccomend using Aardvark for the Image Loader but that is no longer availible, can I even use Antipasto for Image Loading. If so can anyone tell me how.
I used the following code.
PImage liquidPic; //An image
void setup() {
background(0);
open(FlashTransfer); //Make the TouchShield listen for images
background(0);
liquidPic = loadImage("liquid.bmp"); //read a bitmap from onboard flash
image(liquidPic, 0, 0); //draw bitmap
image(liquidPic, 60, 60); // draw bitmap
}
void loop() {
}
Thank You
GTQ