processing/processing

Image Tint does not work when exporting to PDF

已關閉

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

 (3 則留言) (0 個反應) (0 位負責人)Java (1,540 個分叉)batch import
help wanted

倉庫指標

星標
 (6,431 顆星)
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);  
}

貢獻者指南