Hi to everyone, i'm new on this forum.
I have a problem with a .pde written by myself. I have to obtain four little images on the right of my output modified with the andy warhol effect and equal to a bigger image that i have to obtain on the right of the output.
I obtain this output:
even if the starting image (that i should see on the left) is this:
This is the code i wrote:
PImage g_image; PImage g_imageSxUP = new PImage(200,200); PImage g_imageSxDW = new PImage(200,200); PImage g_imageDxUP = new PImage(200,200); PImage g_imageDxDW = new PImage(200,200); PImage g_output = new PImage(800,400);
int g_width = 800; int g_height = 400;
PFont g_font;
int g_index = 1;
color g_colors[] = new color[10]; color g_colorsIn[] = new color[10];