Applying Multiply or soft light or overlay to Pimages in a for loop
in
Programming Questions
•
1 year ago
Hi,
My artwork at present is a set of images of varying transparencies (tints) that get called out at random, overlap eachother and fill up the whole screen. Even though there is a tint applied to the images the overall work is somewhat 'flat' I wanted to have areas of varying light and dark. I was hoping to apply a multiply, soft light or overlay to random images to achieve that depth. I am getting stuck with the syntax;
as the images are called out in a random recursion, I don't know what to enter for any of their x and y co-ordinates or destination ones.
blend(x, y, width, height, dx, dy, dwidth, dheight, MODE),
below in red is what I attempted, but it says the method I entered is not applicable.
Any suggestions would be greatly appreciated.
Thank you!!
int radius = 50;
PImage img;
PImage img2;
String[] imageNames = { "puddle purple 2.png", "puddle green.png", "puddle-purple.png", "puddle blue grey.png", "puddle blue.png", "puddle grey.png" };
PImage[] images = new PImage[imageNames.length];
float x = random(1500);
float y = random(1100);
void setup () {
size(1500, 1100);
img = loadImage("puddle-purple.png");
img2 = loadImage("puddle purple 2.png");
for (int i=0; i < imageNames.length; i++){
String imageName = imageNames[i];
images[i] = loadImage(imageName);
}
}
void draw () {
background(255);
randomSeed(14);
for (int i = 0; i< 10; i ++){
blend(x, y, width, height, random(1500), random(1000), width/2, height/2, MULTIPLY);
for (int deg = 0; deg < 360; deg += 12) {
float angle = radians(deg);
float x = 200 + (sin(angle) * radius);
float y = 200 - (sin(angle) * radius);
blob(img, img2,random(1500), random(1000),img.width, img.height);}
noLoop();
}
}
void blob(PImage i, PImage j, float x, float y, float w, float h ) {
int ran = int(random(images.length));
println(ran);
tint(255,230+random(20),230+random(20),50+random(50));
image(images[ran],x,y,w,h);
if (w > 50) {
pushMatrix();
blob(i, j, x+50 ,y+ 50, w/2, h/1.8);
translate(x, y);
rotate(random(PI/4));
translate(random(0,1500), random(0,1100));
popMatrix();
blob(i, j,x-100, y-100, w/1.8, h/2);
}
}
1