Bug 649 : Image will not show when size() is set
Last modified: 2007-10-20 04:54




Status:
RESOLVED
Resolution:
FIXED -
Priority:
P2
Severity:
normal

 

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.