FAQ
Cover
\
Build
\
Source
\
Bugs
\
Reference
\
Libraries
\
Tools
The bugs database has moved
here
.
Bug 649 : Image will not show when size() is set
Last modified: 2007-10-20 04:54
P
roject:
processing
trash
Version:
unspecified
Co
m
ponent:
android
book
core
libraries
pde
reference
tools
web
Status:
RESOLVED
Resolution:
FIXED -
Pr
i
ority:
P2
Severity:
normal
Platform
All
O
S:
All
Windows
Mac OS
Linux
Other
Reporter:
mschillo
Assigned To:
fry
Attachment
Type
Created
Size
Actions
Description
: Opened: 2007-10-20 04:31
this is new behaviour in 0129, my code used to work in 0125. Here goes:
This will show a pice of my image:
void setup(){
PImage b;
//size( 200, 200);
b = loadImage("Lageplan.gif");
image( b, 0 ,0);
}
void draw(){}
this will show just a grey area:
void setup(){
PImage b;
size( 200, 200);
b = loadImage("Lageplan.gif");
image( b, 0 ,0);
}
void draw(){}
The image can be found at:
http://www.virtosphere.de/schillo/data/Lageplan.gif
Any help appreciated,
Michael.
Additional Comment
#1 From fry 2007-10-20 04:54
fixed for 0130 (online in 30 mins or so), thanks for the report.