class javafx.scene.image.Image$2 implements javafx.scene.image.PixelReader
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: javafx.scene.image.Image$2
  super_class: java.lang.Object
{
  final javafx.scene.image.Image this$0;
    descriptor: Ljavafx/scene/image/Image;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(javafx.scene.image.Image);
    descriptor: (Ljavafx/scene/image/Image;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.scene.image.Image$2 this
         0: .line 1169
            aload 0 /* this */
            aload 1
            putfield javafx.scene.image.Image$2.this$0:Ljavafx/scene/image/Image;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // javafx.scene.image.Image$2 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/image/Image$2;
    MethodParameters:
        Name  Flags
      this$0  final

  public javafx.scene.image.PixelFormat getPixelFormat();
    descriptor: ()Ljavafx/scene/image/PixelFormat;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // javafx.scene.image.Image$2 this
         0: .line 1172
            aload 0 /* this */
            getfield javafx.scene.image.Image$2.this$0:Ljavafx/scene/image/Image;
            getfield javafx.scene.image.Image.platformImage:Ljavafx/scene/image/Image$ObjectPropertyImpl;
            invokevirtual javafx.scene.image.Image$ObjectPropertyImpl.get:()Ljava/lang/Object;
            checkcast com.sun.javafx.tk.PlatformImage
            astore 1 /* pimg */
        start local 1 // com.sun.javafx.tk.PlatformImage pimg
         1: .line 1173
            aload 1 /* pimg */
            invokeinterface com.sun.javafx.tk.PlatformImage.getPlatformPixelFormat:()Ljavafx/scene/image/PixelFormat;
            areturn
        end local 1 // com.sun.javafx.tk.PlatformImage pimg
        end local 0 // javafx.scene.image.Image$2 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavafx/scene/image/Image$2;
            1    2     1  pimg  Lcom/sun/javafx/tk/PlatformImage;

  public int getArgb(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // javafx.scene.image.Image$2 this
        start local 1 // int x
        start local 2 // int y
         0: .line 1178
            aload 0 /* this */
            getfield javafx.scene.image.Image$2.this$0:Ljavafx/scene/image/Image;
            getfield javafx.scene.image.Image.platformImage:Ljavafx/scene/image/Image$ObjectPropertyImpl;
            invokevirtual javafx.scene.image.Image$ObjectPropertyImpl.get:()Ljava/lang/Object;
            checkcast com.sun.javafx.tk.PlatformImage
            astore 3 /* pimg */
        start local 3 // com.sun.javafx.tk.PlatformImage pimg
         1: .line 1179
            aload 3 /* pimg */
            iload 1 /* x */
            iload 2 /* y */
            invokeinterface com.sun.javafx.tk.PlatformImage.getArgb:(II)I
            ireturn
        end local 3 // com.sun.javafx.tk.PlatformImage pimg
        end local 2 // int y
        end local 1 // int x
        end local 0 // javafx.scene.image.Image$2 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavafx/scene/image/Image$2;
            0    2     1     x  I
            0    2     2     y  I
            1    2     3  pimg  Lcom/sun/javafx/tk/PlatformImage;
    MethodParameters:
      Name  Flags
      x     
      y     

  public javafx.scene.paint.Color getColor(int, int);
    descriptor: (II)Ljavafx/scene/paint/Color;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=3
        start local 0 // javafx.scene.image.Image$2 this
        start local 1 // int x
        start local 2 // int y
         0: .line 1184
            aload 0 /* this */
            iload 1 /* x */
            iload 2 /* y */
            invokevirtual javafx.scene.image.Image$2.getArgb:(II)I
            istore 3 /* argb */
        start local 3 // int argb
         1: .line 1185
            iload 3 /* argb */
            bipush 24
            iushr
            istore 4 /* a */
        start local 4 // int a
         2: .line 1186
            iload 3 /* argb */
            bipush 16
            ishr
            sipush 255
            iand
            istore 5 /* r */
        start local 5 // int r
         3: .line 1187
            iload 3 /* argb */
            bipush 8
            ishr
            sipush 255
            iand
            istore 6 /* g */
        start local 6 // int g
         4: .line 1188
            iload 3 /* argb */
            sipush 255
            iand
            istore 7 /* b */
        start local 7 // int b
         5: .line 1189
            iload 5 /* r */
            iload 6 /* g */
            iload 7 /* b */
            iload 4 /* a */
            i2d
            ldc 255.0
            ddiv
            invokestatic javafx.scene.paint.Color.rgb:(IIID)Ljavafx/scene/paint/Color;
            areturn
        end local 7 // int b
        end local 6 // int g
        end local 5 // int r
        end local 4 // int a
        end local 3 // int argb
        end local 2 // int y
        end local 1 // int x
        end local 0 // javafx.scene.image.Image$2 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljavafx/scene/image/Image$2;
            0    6     1     x  I
            0    6     2     y  I
            1    6     3  argb  I
            2    6     4     a  I
            3    6     5     r  I
            4    6     6     g  I
            5    6     7     b  I
    MethodParameters:
      Name  Flags
      x     
      y     

  public <T extends java.nio.Buffer> void getPixels(int, int, int, int, javafx.scene.image.WritablePixelFormat<T>, T, );
    descriptor: (IIIILjavafx/scene/image/WritablePixelFormat;Ljava/nio/Buffer;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=9, args_size=8
        start local 0 // javafx.scene.image.Image$2 this
        start local 1 // int x
        start local 2 // int y
        start local 3 // int w
        start local 4 // int h
        start local 5 // javafx.scene.image.WritablePixelFormat pixelformat
        start local 6 // java.nio.Buffer buffer
        start local 7 // int scanlineStride
         0: .line 1198
            aload 0 /* this */
            getfield javafx.scene.image.Image$2.this$0:Ljavafx/scene/image/Image;
            getfield javafx.scene.image.Image.platformImage:Ljavafx/scene/image/Image$ObjectPropertyImpl;
            invokevirtual javafx.scene.image.Image$ObjectPropertyImpl.get:()Ljava/lang/Object;
            checkcast com.sun.javafx.tk.PlatformImage
            astore 8 /* pimg */
        start local 8 // com.sun.javafx.tk.PlatformImage pimg
         1: .line 1199
            aload 8 /* pimg */
            iload 1 /* x */
            iload 2 /* y */
            iload 3 /* w */
            iload 4 /* h */
            aload 5 /* pixelformat */
         2: .line 1200
            aload 6 /* buffer */
            iload 7 /* scanlineStride */
         3: .line 1199
            invokeinterface com.sun.javafx.tk.PlatformImage.getPixels:(IIIILjavafx/scene/image/WritablePixelFormat;Ljava/nio/Buffer;I)V
         4: .line 1201
            return
        end local 8 // com.sun.javafx.tk.PlatformImage pimg
        end local 7 // int scanlineStride
        end local 6 // java.nio.Buffer buffer
        end local 5 // javafx.scene.image.WritablePixelFormat pixelformat
        end local 4 // int h
        end local 3 // int w
        end local 2 // int y
        end local 1 // int x
        end local 0 // javafx.scene.image.Image$2 this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Ljavafx/scene/image/Image$2;
            0    5     1               x  I
            0    5     2               y  I
            0    5     3               w  I
            0    5     4               h  I
            0    5     5     pixelformat  Ljavafx/scene/image/WritablePixelFormat<TT;>;
            0    5     6          buffer  TT;
            0    5     7  scanlineStride  I
            1    5     8            pimg  Lcom/sun/javafx/tk/PlatformImage;
    Signature: <T:Ljava/nio/Buffer;>(IIIILjavafx/scene/image/WritablePixelFormat<TT;>;TT;I)V
    MethodParameters:
                Name  Flags
      x               
      y               
      w               
      h               
      pixelformat     
      buffer          
      scanlineStride  

  public void getPixels(int, int, int, int, javafx.scene.image.WritablePixelFormat<java.nio.ByteBuffer>, byte[], int, );
    descriptor: (IIIILjavafx/scene/image/WritablePixelFormat;[BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=10, args_size=9
        start local 0 // javafx.scene.image.Image$2 this
        start local 1 // int x
        start local 2 // int y
        start local 3 // int w
        start local 4 // int h
        start local 5 // javafx.scene.image.WritablePixelFormat pixelformat
        start local 6 // byte[] buffer
        start local 7 // int offset
        start local 8 // int scanlineStride
         0: .line 1208
            aload 0 /* this */
            getfield javafx.scene.image.Image$2.this$0:Ljavafx/scene/image/Image;
            getfield javafx.scene.image.Image.platformImage:Ljavafx/scene/image/Image$ObjectPropertyImpl;
            invokevirtual javafx.scene.image.Image$ObjectPropertyImpl.get:()Ljava/lang/Object;
            checkcast com.sun.javafx.tk.PlatformImage
            astore 9 /* pimg */
        start local 9 // com.sun.javafx.tk.PlatformImage pimg
         1: .line 1209
            aload 9 /* pimg */
            iload 1 /* x */
            iload 2 /* y */
            iload 3 /* w */
            iload 4 /* h */
            aload 5 /* pixelformat */
         2: .line 1210
            aload 6 /* buffer */
            iload 7 /* offset */
            iload 8 /* scanlineStride */
         3: .line 1209
            invokeinterface com.sun.javafx.tk.PlatformImage.getPixels:(IIIILjavafx/scene/image/WritablePixelFormat;[BII)V
         4: .line 1211
            return
        end local 9 // com.sun.javafx.tk.PlatformImage pimg
        end local 8 // int scanlineStride
        end local 7 // int offset
        end local 6 // byte[] buffer
        end local 5 // javafx.scene.image.WritablePixelFormat pixelformat
        end local 4 // int h
        end local 3 // int w
        end local 2 // int y
        end local 1 // int x
        end local 0 // javafx.scene.image.Image$2 this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Ljavafx/scene/image/Image$2;
            0    5     1               x  I
            0    5     2               y  I
            0    5     3               w  I
            0    5     4               h  I
            0    5     5     pixelformat  Ljavafx/scene/image/WritablePixelFormat<Ljava/nio/ByteBuffer;>;
            0    5     6          buffer  [B
            0    5     7          offset  I
            0    5     8  scanlineStride  I
            1    5     9            pimg  Lcom/sun/javafx/tk/PlatformImage;
    Signature: (IIIILjavafx/scene/image/WritablePixelFormat<Ljava/nio/ByteBuffer;>;[BII)V
    MethodParameters:
                Name  Flags
      x               
      y               
      w               
      h               
      pixelformat     
      buffer          
      offset          
      scanlineStride  

  public void getPixels(int, int, int, int, javafx.scene.image.WritablePixelFormat<java.nio.IntBuffer>, int[], int, );
    descriptor: (IIIILjavafx/scene/image/WritablePixelFormat;[III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=10, args_size=9
        start local 0 // javafx.scene.image.Image$2 this
        start local 1 // int x
        start local 2 // int y
        start local 3 // int w
        start local 4 // int h
        start local 5 // javafx.scene.image.WritablePixelFormat pixelformat
        start local 6 // int[] buffer
        start local 7 // int offset
        start local 8 // int scanlineStride
         0: .line 1218
            aload 0 /* this */
            getfield javafx.scene.image.Image$2.this$0:Ljavafx/scene/image/Image;
            getfield javafx.scene.image.Image.platformImage:Ljavafx/scene/image/Image$ObjectPropertyImpl;
            invokevirtual javafx.scene.image.Image$ObjectPropertyImpl.get:()Ljava/lang/Object;
            checkcast com.sun.javafx.tk.PlatformImage
            astore 9 /* pimg */
        start local 9 // com.sun.javafx.tk.PlatformImage pimg
         1: .line 1219
            aload 9 /* pimg */
            iload 1 /* x */
            iload 2 /* y */
            iload 3 /* w */
            iload 4 /* h */
            aload 5 /* pixelformat */
         2: .line 1220
            aload 6 /* buffer */
            iload 7 /* offset */
            iload 8 /* scanlineStride */
         3: .line 1219
            invokeinterface com.sun.javafx.tk.PlatformImage.getPixels:(IIIILjavafx/scene/image/WritablePixelFormat;[III)V
         4: .line 1221
            return
        end local 9 // com.sun.javafx.tk.PlatformImage pimg
        end local 8 // int scanlineStride
        end local 7 // int offset
        end local 6 // int[] buffer
        end local 5 // javafx.scene.image.WritablePixelFormat pixelformat
        end local 4 // int h
        end local 3 // int w
        end local 2 // int y
        end local 1 // int x
        end local 0 // javafx.scene.image.Image$2 this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0            this  Ljavafx/scene/image/Image$2;
            0    5     1               x  I
            0    5     2               y  I
            0    5     3               w  I
            0    5     4               h  I
            0    5     5     pixelformat  Ljavafx/scene/image/WritablePixelFormat<Ljava/nio/IntBuffer;>;
            0    5     6          buffer  [I
            0    5     7          offset  I
            0    5     8  scanlineStride  I
            1    5     9            pimg  Lcom/sun/javafx/tk/PlatformImage;
    Signature: (IIIILjavafx/scene/image/WritablePixelFormat<Ljava/nio/IntBuffer;>;[III)V
    MethodParameters:
                Name  Flags
      x               
      y               
      w               
      h               
      pixelformat     
      buffer          
      offset          
      scanlineStride  
}
SourceFile: "Image.java"
EnclosingMethod: javafx.scene.image.Image.getPixelReader:()Ljavafx/scene/image/PixelReader;
NestHost: javafx.scene.image.Image
InnerClasses:
  javafx.scene.image.Image$2
  private final ObjectPropertyImpl = javafx.scene.image.Image$ObjectPropertyImpl of javafx.scene.image.Image