Difference between revisions of "User:Minooz/OSD600/processing"
< User:Minooz | OSD600
(→PROCESSING) |
(→Release 0.3) |
||
Line 15: | Line 15: | ||
== Release 0.3== | == Release 0.3== | ||
− | * Bugs | + | * '''Bugs''' |
: Fix transparency in <TT>copy()</TT> function. Ticket @[https://processing-js.lighthouseapp.com/projects/41284/tickets/1055-copy-doesnt-handle-transparency-properly 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. | : Fix transparency in <TT>copy()</TT> function. Ticket @[https://processing-js.lighthouseapp.com/projects/41284/tickets/1055-copy-doesnt-handle-transparency-properly 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. | ||
− | * Related Tickets | + | * '''Related Tickets''' |
: Ticket I filed for p5 while working on this ticket. [http://code.google.com/p/processing/issues/detail?id=594#makechanges #594] -[http://code.google.com/p/processing/issues/detail?id=601 #601] | : Ticket I filed for p5 while working on this ticket. [http://code.google.com/p/processing/issues/detail?id=594#makechanges #594] -[http://code.google.com/p/processing/issues/detail?id=601 #601] | ||
: Other pjs tickets related to this one: [https://processing-js.lighthouseapp.com/projects/41284/tickets/1174-mandelbrot-and-histogram-ref-tests-are-failing #1174]- [https://processing-js.lighthouseapp.com/projects/41284/tickets/860-color-0-burns-through-non-transparent-background #860]-[https://processing-js.lighthouseapp.com/projects/41284/tickets/948-negative-opacity-values-give-incorrect-results #948] | : Other pjs tickets related to this one: [https://processing-js.lighthouseapp.com/projects/41284/tickets/1174-mandelbrot-and-histogram-ref-tests-are-failing #1174]- [https://processing-js.lighthouseapp.com/projects/41284/tickets/860-color-0-burns-through-non-transparent-background #860]-[https://processing-js.lighthouseapp.com/projects/41284/tickets/948-negative-opacity-values-give-incorrect-results #948] | ||
− | * Helpful tips | + | * '''Helpful tips''' |
: From [http://processingjs.org/reference/loadImage_ 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 | : From [http://processingjs.org/reference/loadImage_ 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 | ||
:<code>/* @pjs preload="img.jpg"; */</code> | :<code>/* @pjs preload="img.jpg"; */</code> |
Revision as of 17:44, 16 April 2011
OSD600 - PROCESSING
- processing.js
- Source Control: git
- BugTracker: Lighthouse
- Blog: @ wordpress
Release 0.1
- Bugs
- Add parseBoolean function. Ticket @lighthouse
- A missing feature from Processing (Java). Convert a char, a integer, a string, an array into a boolean.
- Related Tickets
- [ https://processing-js.lighthouseapp.com/projects/41284/tickets/1058-rename-int-boolean-etc-to-parseint-parseboolean-etc #1058]
- [https://processing-js.lighthouseapp.com/projects/41284/tickets/450-parsechar #450
Release 0.3
- 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.
- Related Tickets
- Ticket I filed for p5 while working on this ticket. #594 -#601
- Other pjs tickets related to this one: #1174- #860-#948
- 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
- processing eclipse_plugin
- reported a p5 bug 594
- type with me
Others
- info @ type with me
- ref tests needed [2]
- Examples [3]
- Processing - helper [4]