}
public boolean hasDimensions(final int width, final int height) {
if (isLoaded()) {
if (_img instanceof AWTFSImage) {
AWTFSImage awtfi = (AWTFSImage) _img;
return awtfi.getWidth() == width && awtfi.getHeight() == height;
} else {
return false;
}
} else {
return false;