In my testing w + 4 was needed to see the right side a frame on a framed .eps file. This was a file created by the Eagle pcb layout program when asked to show the board dimensions. I tested 1, 2, 5 and 4, using xforms1.0rc4
Garst
unsigned int xformsGImage::getWidth() const
{
if (!image_)
return 0;
// Why, oh why do we need such hacks?
// Angus 12 July 2002
return image_->w + 2;
}
