PDF export, how to tint() image?

With the processing.pdf library, is it normal that I cannot tint() an image ?

import processing.pdf.*;
PImage img ;
color orange, yellow, green;

void setup() {
  size(600, 600);
  beginRecord(PDF, "testExport.pdf");
  img = loadImage("../greyLogo1.png");
  imageMode(CENTER);
  orange = color(246, 130, 18); 

  background(150);
  tint(orange);
  image(img, width/2, height/2, 200, 313);

  endRecord();
  exit();
}
1 Like

Hi mloiz,

It is an old issue but apparently it is not fixed yet:

4 Likes

thanks jb4x,
can we do something else than this issue ? update the issue ?

You can maybe reply to it to bump it up.
How don’t really know how it works.