Re : No font in exported PDF
Yah, I think you're right. I tried everything available in Acrobat Pro and could not reveal the font. Ah well. Too bad. I am now trying out pycairo. It is much more of a PITA to install and write...
View ArticleRe : Calendar class related error in latest Processing 2.0b7
I had the same problem.PROCESSING 2.0b7 (REV 0215) - 7 December 2012 475,382 bug fixes in this release as we work on finalizing 2.0. [ changes ] + Removed all imports that aren't covered in the...
View Articlethen get busy
Just learn to be a bit more disciplined. Are you really hungry? If so think about what you eat... something small and sugary or ‘empty calories’ will not be filling and will have you hungry again very...
View ArticleRe : How to port old PGraphicsOpenGL code to Processing 2 alpha - Additive...
For the blending problem, you should be able to replace the opengl calls with blendMode(ADD). This is a new function added in Processing which sets screen blending with OpenGL under P2D and P3D for...
View ArticleRe : [2.0xx] How to set multiple render targets for a fragment shader?
I think that GLES 2.0 doesn't support multiple render targets. On the other hand, OpenGL desktop does support MRT (by writing to gl_FragData[0], gl_FragData[1], etc in the fragment shader), and the...
View ArticleColor tracking. How to detect colors clashing?
Hi. I'm working on a game as part of a school assignment, the basics is that it's a fighting game in real life. What I need to do is track two colors (or possibly more but two will do for now) and I...
View ArticleTrying to compile two sketches on one
So, I am new to processing and I am trying to do a sketch that uses the webcam to take a picture and within that image sample color from a specified area (pixel). What I did was make two sketches...
View ArticleRe : Trying to compile two sketches on one
Don't call loadImage() in draw()!Actually, don;t call loadImage() at all.There is no need to save the file to disk while merging the two sketches.You can create a PImage from the camera directly:img =...
View ArticleRe : Color tracking. How to detect colors clashing?
So your process should be:Draw the camera's image.Scan the image for the pixels that are the best match to the first and second colors.Record their X and Y positions. (Hint: X1, Y1, X2, Y2.)Determine...
View ArticleRe : [2.0xx] How to set multiple render targets for a fragment shader?
Thanks for your response andres. I gave this a shot. However when I try to use the FrameBuffer class, I'm running into visibility issues for it's methods, fields and constructors. Is there a way around...
View ArticleRe : Trying to compile two sketches on one
HiI couldn't follow what you were suggesting me before, so i tried something different and it is more simple now...So I was advancing a little on the idea. No I have other problem. I need the sample...
View ArticleRe : Trying to compile two sketches on one
As tfguy44 said, avoid loading the image in draw(), because accessing such file 60 times per second isn't necessary / useful, it can only slow down your sketch.You can load it in setup(), even more as...
View ArticleControlling Video
Hello I am about to undertake a project using Processing and it involves controlling a video using keys on a keyboard. Initially, the 'Frames' example caught my eye..and I want to be able to control my...
View ArticleMinim - AudioOutput - how do you know the song is done ?
Hi there,I'm new on Processing and Minim and i was looking at the ADSR example in UGEN (Minim BETA) to help me for my project and I don't understand how you can know when the song played is done...
View Articleenough to leave
propelled her to global recognition, Malala was targeted in Pakistan by Taliban gunmen for speaking out in favor of education for Pakistani girls. She was left with life-threatening head and neck...
View ArticleProcessing audio player customization?
Hey people,I am new to all this processing stuff (not familiar with all the fancy terms yet) but have a quick question. I am using the following code to match music played with processing to control...
View ArticleRe : Processing audio player customization?
there actually is (just look here: http://code.compartmental.net/minim/javadoc/ in AudioPlayer)for example:player.pause()&player.cue(int millis) which can be used to cue back to 0 or any desired...
View ArticleWhere is my PDF?
OK, I fully realize I must be doing something extremely stupid and yes, I've looked through this forum for an answer but...When I copy and run a simple demo program on Windows 7 using the vanilla...
View ArticleRe : Where is my PDF?
Resulting .pdf is rendered in the same folder as the source .pde.Use CTRL+K to open the folder where current .pde is in.
View ArticleRe : Where is my PDF?
Simples.Because I was just pasting an example without saving, there was no .pde folder created. 'Save' and the problem is solved.Many thanks.HH
View Article