topical media & game development

talk show tell print

graphic-processing-site-examples-Libraries-PDF-Export-OneFrame-OneFrame.pde / pde



  
One Frame. Saves one PDF with the contents of the display window. Because this example uses beginRecord, the image is shown on the display window and is saved to the file.

  
  
  import processing.pdf.*;
  
  size(600, 600);
  
  beginRecord(PDF, "line.pdf"); 
  
  background(255);
  stroke(0, 20);
  strokeWeight(20.0);
  line(200, 0, 400, height);
  
  endRecord();
  
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.