Difference between revisions of "User:Minooz/OSD600/processing"
< User:Minooz | OSD600
(→Release 0.3) |
(→Release 0.3) |
||
Line 32: | Line 32: | ||
:<code>/* @pjs preload="img.jpg"; */</code> | :<code>/* @pjs preload="img.jpg"; */</code> | ||
:[http://en.wikipedia.org/wiki/Alpha_compositing alpha channel] | :[http://en.wikipedia.org/wiki/Alpha_compositing alpha channel] | ||
− | : processing [http://code.google.com/p/processing/source/browse/trunk/processing/core/src/processing/core/PImage.java java] | + | : p5 [http://code.google.com/p/processing/source/browse/trunk/ trunk] |
+ | : p5 [http://code.google.com/p/processing/source/browse/trunk/processing/core/src/processing/core/PImage.java java] PImage.java | ||
: how to build the processing (java) [http://code.google.com/p/processing/wiki/BuildInstructions] | : how to build the processing (java) [http://code.google.com/p/processing/wiki/BuildInstructions] | ||
: processing on [http://www.processing.org/learning/eclipse/ Eclipse] | : processing on [http://www.processing.org/learning/eclipse/ Eclipse] |
Revision as of 18:37, 22 March 2011
PROCESSING
My works on Processing.js
Release 0.1
- processing.js
- Source Control: git
- BugTracker: Lighthouse
- Blog: @ wordpress
- Bugs
- Add parseBoolean function. Ticket @lighthouse
- A missing feature from Processing (Java). Convert a char, a integer, a string, an array into a boolean.
- Documentation
- Helpful tips
Release 0.3
- processing.js
- Source Control: git
- BugTracker: Lighthouse
- Blog: @ wordpress
- Bugs
- Fix transparency in copy() function. Ticket @lighthouse
- When using copy() on an image with transparency, the transparency overwrites the background color. See the screenshots to compare against p5. The image is a red splatter with transparent background and the background is green.
- Helpful tips
- From processingjs.org DOM security will not allow you to load images file:/// URIs. This security can be overridden in Firefox in about:config, by changing security.fileuri.strict_origin_policy to false. Otherwise use
/* @pjs preload="img.jpg"; */
- alpha channel
- p5 trunk
- p5 java PImage.java
- how to build the processing (java) [1]
- processing on Eclipse