Uses of Class
javafx.scene.image.WritablePixelFormat
-
Packages that use WritablePixelFormat 软件包 描述 javafx.scene.image 提供加载和显示图像的一组类。 -
-
Uses of WritablePixelFormat in javafx.scene.image
Methods in javafx.scene.image that return WritablePixelFormat Modifier and Type 方法 描述 static WritablePixelFormat<ByteBuffer>PixelFormat. getByteBgraInstance()返回描述像素布局的WritablePixelFormat实例,其中存储在相邻字节中的像素与 非预乘数组件按照增加索引的顺序存储:蓝色,绿色,红色,alpha。static WritablePixelFormat<ByteBuffer>PixelFormat. getByteBgraPreInstance()返回描述像素布局的WritablePixelFormat实例,其中存储在相邻字节中的像素,其中 预乘数组件以增加的索引:蓝色,绿色,红色,alpha的顺序存储。static WritablePixelFormat<IntBuffer>PixelFormat. getIntArgbInstance()返回描述像素布局的WritablePixelFormat实例,其中以32位整数存储的像素与 非预乘数组件按顺序存储,从MSb到LSb:alpha,red,green,blue。static WritablePixelFormat<IntBuffer>PixelFormat. getIntArgbPreInstance()返回描述像素布局的WritablePixelFormat实例,其中以32位整数存储的像素, 预乘数组件按顺序存储,从MSb到LSb:alpha,red,green,blue。Methods in javafx.scene.image with parameters of type WritablePixelFormat Modifier and Type 方法 描述 voidPixelReader. getPixels(int x, int y, int w, int h, WritablePixelFormat<ByteBuffer> pixelformat, byte[] buffer, int offset, int scanlineStride)将像素数据从表面的矩形区域读入指定的字节数组。voidPixelReader. getPixels(int x, int y, int w, int h, WritablePixelFormat<IntBuffer> pixelformat, int[] buffer, int offset, int scanlineStride)将像素数据从表面的矩形区域读入指定的int数组。<T extends Buffer>
voidPixelReader. getPixels(int x, int y, int w, int h, WritablePixelFormat<T> pixelformat, T buffer, int scanlineStride)将像素数据从表面的矩形区域读入指定的缓冲区。
-