save pdf from PGraphic
in
Core Library Questions
•
1 year ago
How can i get a pdf from a PGraphic? It saves a file now but it's 0 bytes and can't be opened
- import processing.pdf.*;
- PGraphics pg;
- void setup() {
- size(100, 100);
- pg = createGraphics(80, 80, PDF, "dump.pdf");
- pg.beginDraw();
- pg.background(102);
- pg.stroke(255);
- pg.line(0, 0, pg.width, pg.height);
- pg.endDraw();
- println("done");
- }
1