processing/processing

Image Tint does not work when exporting to PDF

Open

#2,428 建立於 2014年4月7日

在 GitHub 查看
 (3 留言) (0 反應) (0 負責人)Java (1,540 fork)batch import
help wanted

倉庫指標

Star
 (6,431 star)
PR 合併指標
 (30 天內沒有已合併 PR)

描述

Hi,

This was working fine but stopped working when I updated to the latest release. Hope somebody can help as this is a critical issue for what I do. Thanks.

import processing.pdf.*;

PImage img;

void setup() {

  size(640,360); //  when this is run, the tinted image is displayed
// size(640, 360, PDF, "test.pdf");  // however when this is run tint doesn't work anymore.

   img = loadImage("moonwalk.jpg");  

     tint(50);  
  image(img, 0, 0);  
}

貢獻者指南