/* */ public QTImageDrawer(Image paramImage)
/* */ throws QTAppException
/* */ {
/* 122 */ int i = paramImage.getWidth(null);
/* 123 */ if (i == -1)
/* 124 */ throw new QTAppException("Image size must be known");
/* 125 */ int j = paramImage.getHeight(null);
/* */
/* 127 */ this.mSize = new Dimension(i, j);
/* 128 */ this.image = new ImagePresenter(new QDRect(this.mSize));
/* 129 */ this.painter = new JImagePainter(paramImage);