android.graphics.YuvImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.graphics;
public class YuvImage
{
public YuvImage(byte[] yuv, int format, int width, int height, int[] strides) { throw new RuntimeException("Stub!"); }
public boolean compressToJpeg(android.graphics.Rect rectangle, int quality, java.io.OutputStream stream) { throw new RuntimeException("Stub!"); }
public byte[] getYuvData() { throw new RuntimeException("Stub!"); }
public int getYuvFormat() { throw new RuntimeException("Stub!"); }
public int[] getStrides() { throw new RuntimeException("Stub!"); }
public int getWidth() { throw new RuntimeException("Stub!"); }
public int getHeight() { throw new RuntimeException("Stub!"); }
}