fix pdf colors outside the range causing NPE (resolves #740)

This commit is contained in:
Ben Fry
2023-07-16 12:40:21 -04:00
parent 81faaa5e7d
commit fb20a176ee
3 changed files with 44 additions and 28 deletions

View File

@@ -496,6 +496,14 @@ public class PGraphicsPDF extends PGraphicsJava2D {
//////////////////////////////////////////////////////////////
public void backgroundImpl() {
// Override so that even with alpha, we draw a rectangle.
// https://github.com/processing/processing4/issues/740
backgroundRect();
}
//
public void loadPixels() {
nope("loadPixels");
}