FAQ
Cover
\
Build
\
Source
\
Bugs
\
Reference
\
Libraries
\
Tools
The bugs database has moved
here
.
Bug 358 : Gif transparency ignored
Last modified: 2006-05-22 04:39
P
roject:
processing
trash
Version:
unspecified
Co
m
ponent:
android
book
core
libraries
pde
reference
tools
web
Status:
RESOLVED
Resolution:
DUPLICATE of bug
350
Pr
i
ority:
P2
Severity:
normal
Platform
All
O
S:
All
Windows
Mac OS
Linux
Other
Reporter:
fjoselevich
Assigned To:
fry
Attachment
Type
Created
Size
Actions
Description
: Opened: 2006-05-22 04:13
This example shows a code that worked until version 0114.
This should show a windmill, on grey over a greyscale field. It's showing
the transparency as white.
[code]
PImage img;
float rotation = 0;
void setup() {
img = loadImage("
http://www.area3.net/pruebas/aspa.gif
");
size(320,320,P3D);
}
void draw() {
rotation += .01;
background(mouseY/2);
translate(width/2,height/2);
rotateZ(rotation);
image(img,-32, -32);
}
[/code]
Additional Comment
#1 From fry 2006-05-22 04:39
*** This bug has been marked as a duplicate of
350
***