We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b920f1e commit ae082f5Copy full SHA for ae082f5
sources/net.sf.j2s.java.core/src/java/awt/image/BufferedImage.java
@@ -693,6 +693,7 @@ public ColorModel getColorModel() {
693
* @return the <code>WriteableRaster</code> of this <code>BufferedImage</code> .
694
*/
695
public WritableRaster getRaster() {
696
+ // NO!!! checkHavePixels();
697
return raster;
698
}
699
@@ -1535,7 +1536,7 @@ private void setPixels() {
1535
1536
case TYPE_BYTE_BINARY:
1537
case TYPE_USHORT_565_RGB:
1538
case TYPE_USHORT_555_RGB:
- JSUtil.notImplemented("BufferedImage type " + imageType);
1539
+ JSUtil.notImplemented("BufferedImage setPixels for type " + imageType);
1540
break;
1541
case TYPE_BYTE_INDEXED:
1542
0 commit comments