Re : pfd export a specific area / box
hey andreas! thanks for your reply, it's almost the thing i want! but, is it possible just to get the maxtrix grid as a pdf, without the space (where actually controlP5 was)? one way would be 2...
View ArticleRe : No font in exported PDF
No incantation but it only works when the moon (is) of the same shape and season as the day when they were written LOL. Try the code above, the second one. The only difference is I commented out the...
View ArticleRe : No font in exported PDF
That's what I tried... (except I just put the TTF font in the data folder).Aha, looking at my sketch, I see I made a beginner's error: I had the textFont() call before the beginRecord()! Moving it...
View ArticleError opengl without using opengl?
I use Processing: Version 2.0b7I have always this error:OpenGL error 1280 at bot beginDraw(): invalid enumerantthis is my simple code:void setup() { size(400, 300, P3D);}Can you help me please?thank you.
View ArticleJava Error in processing Mac OS X 10.7.5
Hello, I'm trying to interface with an Ardunio using the serial library and am getting this errorRXTX Warning: Removing stale lock file. /var/lock/LK.032.018.004gnu.io.PortInUseException: Unknown...
View ArticlePDF export / preserving ability to edit text
Hello,I'm trying to export PDF while preserving ability to edit text – fonts should not be converted to shapes! According to docs it should work with createFont() but unfortunately I just can't seem to...
View ArticleRe : PDF export / preserving ability to edit text
Put this right after the size() call in setup(): textMode(MODEL);
View ArticleRe : PDF export / preserving ability to edit text
Unfortunately this doesnt work, I've already tried it. In the example above I get error. While in examples that use beginRecord() / endRecord() I don't get error but pdf with font again converted to...
View ArticleRe : PDF export / preserving ability to edit text
It works for me in Processing 1.5.1 and 2.0b7 on WinXP. The problem may be your font.I can select the text in Adobe Reader and also edit it in Adobe Illustrator CS6.Adapted Codeimport processing.pdf.*;...
View ArticleRe : PDF export / preserving ability to edit text
Thanx Amnon!You were right, that the problem was in font. I'm sure I've also tested with Arial, but I've probably made some other mistake at the same time.Other example – one using begin/endRecord had...
View ArticleRe : Error opengl without using opengl?
Thank you. I'm trying to develop an augmented reality app with my Dell inspiron 6400 notebook with an ATI Mobitlity Radeon X1300 graphic cardHow can I solve this problem?
View ArticleRe : Transparency and resolution problems with exported PDF
Yeah, I read all those unresolved old posts before I decided to start a new one. I was hoping that, by now, someone has come up with a hack or something. BTW I have tried both SVG libraries and they...
View ArticleRe : Transparency and resolution problems with exported PDF
"I have tried both SVG libraries"Which ones?Since I made one (a third one?), I am interested to have feedback."The transparency shows up in preflight analysis. I don't know what the red X means other...
View ArticleThe type Table is ambiguous
Hey all,I'm trying to use geoMap library, but they have their own Table class, that conflicts with Processing's Table class.So when I use Table I get this message:The type Table is ambiguousI want to...
View ArticleRe : The type Table is ambiguous
something likegeoMap.Table table = new geoMap.Table(whatever);is possible.
View ArticleRe : Transparency and resolution problems with exported PDF
"I have tried both SVG libraries" Which ones? Since I made one (a third one?), I am interested to have feedback. I tried prosvg and the PDE couldn’t find the library even though it was in the...
View ArticleRe : The type Table is ambiguous
Thanks clankill3r!I tried several ways, this was the one that worked:org.gicentre.geomap.Table tab = new org.gicentre.geomap.Table("data.tsv", this);
View Article