We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
Page Index Toggle Pages: 1
pdf export (Read 699 times)
pdf export
Apr 9th, 2010, 2:49am
 
Hi,
hello eveybody, I'm new in this forum and in processing... sorry if my questions will be silly.
I have a problem exporting my jobs as pdf.
Here is a very simple example.

With the code below I expect a light grey circle WITHOUT STROKE to appear on the screen. And this is exactly what happens, but when i open the generated .pdf file the circle HAS a black outline stroke.
Why?
Thank you very much for your help!

import processing.pdf.*;

 size(400, 400);
 background(255);
 noStroke();
 
 beginRecord(PDF, "prova.pdf");
 
 fill(0);
 ellipse(250, 250, 300, 300);

 endRecord();

Re: pdf export
Reply #1 - Apr 9th, 2010, 3:16am
 
sorry, just found the answer
http://processing.org/discourse/yabb2/num_1250930639.html#3
Page Index Toggle Pages: 1