Index
All Classes and Interfaces|All Packages|Serialized Form
A
- ABSOLUTE_COLORIMETRIC - Enum constant in enum class cloud.opencode.base.image.codec.color.RenderingIntent
-
Absolute colorimetric: includes white point adjustment.
- advanceWidth() - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Returns the value of the
advanceWidthrecord component. - alpha() - Method in record class cloud.opencode.base.image.codec.font.Bitmap
-
Returns the value of the
alpharecord component. - alpha() - Method in record class cloud.opencode.base.image.codec.png.DecodedPng
-
Returns the value of the
alpharecord component. - apply(byte[]) - Method in class cloud.opencode.base.image.codec.color.ColorTransform
-
Allocates a fresh output array and applies this transform to all pixels in
input. - apply(byte[], int, byte[], int, int) - Method in class cloud.opencode.base.image.codec.color.ColorTransform
-
Applies this transform to
pixelCountpixels starting at the given offsets. - ascent() - Method in record class cloud.opencode.base.image.codec.font.TextMetrics
-
Returns the value of the
ascentrecord component.
B
- BGR_8 - Enum constant in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
8-bit BGR, 3 bytes/pixel: B G R.
- BGRA_8 - Enum constant in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
8-bit BGRA, 4 bytes/pixel: B G R A.
- Bitmap - Record Class in cloud.opencode.base.image.codec.font
-
Single-channel 8-bit alpha bitmap, row-major, top-down.
- Bitmap(int, int, byte[]) - Constructor for record class cloud.opencode.base.image.codec.font.Bitmap
-
Compact constructor validates invariants.
- BmpCodec - Class in cloud.opencode.base.image.codec.bmp
-
Pure-Java BMP codec for image embedding / general use.
- bytesPerPixel() - Method in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
Bytes per pixel for this format.
- bytesPerPixel() - Method in enum class cloud.opencode.base.image.codec.webp.WebpFormat
-
Returns the byte count per pixel for this format.
C
- close() - Method in class cloud.opencode.base.image.codec.color.ColorProfile
-
Closes this profile via
cmsCloseProfile. - close() - Method in class cloud.opencode.base.image.codec.color.ColorTransform
-
Closes this transform via
cmsDeleteTransform. - close() - Method in class cloud.opencode.base.image.codec.font.Font
-
Closes this font via
opencode_stbtt_free_font. - cloud.opencode.base.image.codec - module cloud.opencode.base.image.codec
-
OpenCode Base Image Codec Module OpenCode 图像编解码模块
- cloud.opencode.base.image.codec.bmp - package cloud.opencode.base.image.codec.bmp
- cloud.opencode.base.image.codec.color - package cloud.opencode.base.image.codec.color
- cloud.opencode.base.image.codec.exception - package cloud.opencode.base.image.codec.exception
- cloud.opencode.base.image.codec.font - package cloud.opencode.base.image.codec.font
- cloud.opencode.base.image.codec.gif - package cloud.opencode.base.image.codec.gif
- cloud.opencode.base.image.codec.jpeg - package cloud.opencode.base.image.codec.jpeg
- cloud.opencode.base.image.codec.png - package cloud.opencode.base.image.codec.png
- cloud.opencode.base.image.codec.webp - package cloud.opencode.base.image.codec.webp
- CMYK_8 - Enum constant in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
8-bit CMYK, 4 bytes/pixel: C M Y K.
- ColorProfile - Class in cloud.opencode.base.image.codec.color
-
ICC color profile handle backed by an lcms2
cmsHPROFILE. - ColorTransform - Class in cloud.opencode.base.image.codec.color
-
Color transform between two
ColorProfiles, backed by an lcms2cmsHTRANSFORM. - create(ColorProfile, PixelFormat, ColorProfile, PixelFormat, RenderingIntent) - Static method in class cloud.opencode.base.image.codec.color.ColorTransform
-
Creates a transform from
(inProfile, inFormat)to(outProfile, outFormat)using the given rendering intent.
D
- data() - Method in record class cloud.opencode.base.image.codec.webp.DecodedWebp
-
Returns the value of the
datarecord component. - decode(byte[]) - Static method in class cloud.opencode.base.image.codec.bmp.BmpCodec
-
Decodes the supplied BMP byte stream into row-major top-down RGB pixels.
- decode(byte[]) - Static method in class cloud.opencode.base.image.codec.jpeg.JpegCodec
-
Decodes a JPEG byte stream to tightly packed RGB pixels.
- decode(byte[]) - Static method in class cloud.opencode.base.image.codec.png.PngDecoder
-
Decodes the supplied PNG byte stream.
- decode(byte[]) - Static method in class cloud.opencode.base.image.codec.webp.WebpCodec
-
Decodes a WebP byte stream to tightly packed RGB pixels.
- DecodedBmp - Record Class in cloud.opencode.base.image.codec.bmp
-
Result of
BmpCodec.decode(byte[]). - DecodedBmp(int, int, byte[]) - Constructor for record class cloud.opencode.base.image.codec.bmp.DecodedBmp
-
Canonical constructor with strict argument validation.
- DecodedGif - Record Class in cloud.opencode.base.image.codec.gif
-
Result of
GifCodec.decodeFirstFrame(byte[]). - DecodedGif(int, int, byte[]) - Constructor for record class cloud.opencode.base.image.codec.gif.DecodedGif
-
Canonical constructor with strict argument validation.
- DecodedJpeg - Record Class in cloud.opencode.base.image.codec.jpeg
-
Result of decoding a JPEG byte stream into raw RGB pixel data.
- DecodedJpeg(int, int, byte[]) - Constructor for record class cloud.opencode.base.image.codec.jpeg.DecodedJpeg
-
Compact constructor validating
rgblength matches the dimensions. - DecodedPng - Record Class in cloud.opencode.base.image.codec.png
-
Result of
PngDecoder.decode(byte[]). - DecodedPng(int, int, byte[], byte[]) - Constructor for record class cloud.opencode.base.image.codec.png.DecodedPng
-
Creates an instance of a
DecodedPngrecord class. - DecodedWebp - Record Class in cloud.opencode.base.image.codec.webp
-
Result of decoding a WebP byte stream into raw pixel data.
- DecodedWebp(int, int, byte[], WebpFormat) - Constructor for record class cloud.opencode.base.image.codec.webp.DecodedWebp
-
Compact constructor validating
datalength matches the dimensions and format. - decodeFirstFrame(byte[]) - Static method in class cloud.opencode.base.image.codec.gif.GifCodec
-
Decodes the first frame of the supplied GIF byte stream.
- decodeRgba(byte[]) - Static method in class cloud.opencode.base.image.codec.webp.WebpCodec
-
Decodes a WebP byte stream to tightly packed RGBA pixels.
- defaults() - Static method in record class cloud.opencode.base.image.codec.jpeg.JpegOptions
-
Returns sensible defaults: quality
75, subsampling4:2:0. - defaults() - Static method in record class cloud.opencode.base.image.codec.webp.WebpOptions
-
Returns sensible defaults: lossy, quality
75. - descent() - Method in record class cloud.opencode.base.image.codec.font.TextMetrics
-
Returns the value of the
descentrecord component.
E
- encode(byte[], int, int) - Static method in class cloud.opencode.base.image.codec.bmp.BmpCodec
-
Encodes RGB pixel data as a 24-bit uncompressed (BI_RGB) BMP.
- encode(byte[], int, int, JpegOptions) - Static method in class cloud.opencode.base.image.codec.jpeg.JpegCodec
-
Encodes tightly packed RGB pixels to a JPEG byte stream.
- encode(byte[], int, int, WebpOptions) - Static method in class cloud.opencode.base.image.codec.webp.WebpCodec
-
Encodes tightly packed RGB pixels to a WebP byte stream.
- encodeRgb(byte[], int, int) - Static method in class cloud.opencode.base.image.codec.gif.GifCodec
-
Convenience: encode an RGB byte array (no transparency) as GIF89a.
- encodeRgb(byte[], int, int) - Static method in class cloud.opencode.base.image.codec.png.PngEncoder
-
Encodes RGB pixel data (3 bytes per pixel, row-major) as PNG bytes.
- encodeRgba(byte[], int, int) - Static method in class cloud.opencode.base.image.codec.gif.GifCodec
-
Encodes RGBA pixel data as a single-frame GIF89a.
- encodeRgba(byte[], int, int) - Static method in class cloud.opencode.base.image.codec.png.PngEncoder
-
Encodes RGBA pixel data (4 bytes per pixel, row-major) as PNG bytes.
- encodeRgba(byte[], int, int, WebpOptions) - Static method in class cloud.opencode.base.image.codec.webp.WebpCodec
-
Encodes tightly packed RGBA pixels to a WebP byte stream.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.bmp.DecodedBmp
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.font.Bitmap
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.font.TextMetrics
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.gif.DecodedGif
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.jpeg.DecodedJpeg
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.jpeg.JpegHeader
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.jpeg.JpegOptions
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.png.DecodedPng
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.webp.DecodedWebp
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.webp.WebpHeader
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in record class cloud.opencode.base.image.codec.webp.WebpOptions
-
Indicates whether some other object is "equal to" this one.
F
- Font - Class in cloud.opencode.base.image.codec.font
-
TrueType / OpenType font handle backed by stb_truetype via FFM.
- format() - Method in record class cloud.opencode.base.image.codec.webp.DecodedWebp
-
Returns the value of the
formatrecord component. - fromIccBytes(byte[]) - Static method in class cloud.opencode.base.image.codec.color.ColorProfile
-
Loads an ICC profile from a raw byte array (e.g. embedded in a PNG/JPEG iCCP / Exif chunk).
- fromNative(int) - Static method in enum class cloud.opencode.base.image.codec.jpeg.JpegSubsampling
-
Maps a native
TJSAMP_*integer back to aJpegSubsampling.
G
- GifCodec - Class in cloud.opencode.base.image.codec.gif
-
Pure-Java GIF codec for image embedding / general use.
- glyphHeight() - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Glyph bbox height in pixels.
- GlyphMetrics - Record Class in cloud.opencode.base.image.codec.font
-
Pixel-space metrics for a single glyph (codepoint) at a specific pixel height.
- GlyphMetrics(int, int, int, int, int, int) - Constructor for record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Creates an instance of a
GlyphMetricsrecord class. - glyphMetricsAt(int, float) - Method in class cloud.opencode.base.image.codec.font.Font
-
Pixel-space metrics for a single codepoint at the given pixel height.
- glyphWidth() - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Glyph bbox width in pixels.
- GRAY_8 - Enum constant in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
8-bit grayscale, 1 byte/pixel: Y.
H
- hasCodepoint(int) - Method in class cloud.opencode.base.image.codec.font.Font
-
Returns whether this font has a glyph for
codepoint(i.e. the stb_truetype glyph index is non-zero). - hashCode() - Method in record class cloud.opencode.base.image.codec.bmp.DecodedBmp
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.font.Bitmap
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.font.TextMetrics
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.gif.DecodedGif
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.jpeg.DecodedJpeg
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.jpeg.JpegHeader
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.jpeg.JpegOptions
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.png.DecodedPng
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.webp.DecodedWebp
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.webp.WebpHeader
-
Returns a hash code value for this object.
- hashCode() - Method in record class cloud.opencode.base.image.codec.webp.WebpOptions
-
Returns a hash code value for this object.
- height() - Method in record class cloud.opencode.base.image.codec.bmp.DecodedBmp
-
Returns the value of the
heightrecord component. - height() - Method in record class cloud.opencode.base.image.codec.font.Bitmap
-
Returns the value of the
heightrecord component. - height() - Method in record class cloud.opencode.base.image.codec.gif.DecodedGif
-
Returns the value of the
heightrecord component. - height() - Method in record class cloud.opencode.base.image.codec.jpeg.DecodedJpeg
-
Returns the value of the
heightrecord component. - height() - Method in record class cloud.opencode.base.image.codec.jpeg.JpegHeader
-
Returns the value of the
heightrecord component. - height() - Method in record class cloud.opencode.base.image.codec.png.DecodedPng
-
Returns the value of the
heightrecord component. - height() - Method in record class cloud.opencode.base.image.codec.webp.DecodedWebp
-
Returns the value of the
heightrecord component. - height() - Method in record class cloud.opencode.base.image.codec.webp.WebpHeader
-
Returns the value of the
heightrecord component. - highQuality() - Static method in record class cloud.opencode.base.image.codec.jpeg.JpegOptions
-
Returns high-quality preset: quality
95, subsampling4:4:4.
I
- inputFormat() - Method in class cloud.opencode.base.image.codec.color.ColorTransform
-
Source pixel format.
J
- JpegCodec - Class in cloud.opencode.base.image.codec.jpeg
-
JPEG codec backed by libjpeg-turbo via Foreign Function & Memory API.
- JpegHeader - Record Class in cloud.opencode.base.image.codec.jpeg
-
JPEG header information returned by
JpegCodec.readHeader(byte[]). - JpegHeader(int, int, JpegSubsampling) - Constructor for record class cloud.opencode.base.image.codec.jpeg.JpegHeader
-
Creates an instance of a
JpegHeaderrecord class. - JpegOptions - Record Class in cloud.opencode.base.image.codec.jpeg
-
Encoding options for
JpegCodec.encode(byte[], int, int, JpegOptions). - JpegOptions(int, JpegSubsampling) - Constructor for record class cloud.opencode.base.image.codec.jpeg.JpegOptions
-
Compact constructor validating
qualityandsubsampling. - JpegSubsampling - Enum Class in cloud.opencode.base.image.codec.jpeg
-
JPEG chroma subsampling mode (mirrors libjpeg-turbo
TJSAMP_*).
L
- lab() - Static method in class cloud.opencode.base.image.codec.color.ColorProfile
-
Creates a built-in Lab v4 profile with D50 white point (passes NULL to
cmsCreateLab4Profileper lcms2 contract). - LAB_8 - Enum constant in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
8-bit Lab, 3 bytes/pixel using V2 ICC encoding (see class doc). 8 位 Lab,3 字节/像素,V2 ICC 编码(详见类文档)。
- leftSideBearing() - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Returns the value of the
leftSideBearingrecord component. - lineGap() - Method in record class cloud.opencode.base.image.codec.font.TextMetrics
-
Returns the value of the
lineGaprecord component. - lineHeight() - Method in record class cloud.opencode.base.image.codec.font.TextMetrics
-
Total line height:
ascent - descent + lineGap. - load(byte[]) - Static method in class cloud.opencode.base.image.codec.font.Font
-
Loads a font from a TTF / OTF byte array.
- load(Path) - Static method in class cloud.opencode.base.image.codec.font.Font
-
Loads a font from a filesystem path (TTF / OTF).
- lossless() - Method in record class cloud.opencode.base.image.codec.webp.WebpOptions
-
Returns the value of the
losslessrecord component. - losslessDefault() - Static method in record class cloud.opencode.base.image.codec.webp.WebpOptions
-
Returns lossless preset (quality unused; stored as
100). - lossy(float) - Static method in record class cloud.opencode.base.image.codec.webp.WebpOptions
-
Returns lossy preset with the given quality.
M
- measure(String, float) - Method in class cloud.opencode.base.image.codec.font.Font
-
Measures a string at the given pixel height.
N
- nativeValue() - Method in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
lcms2
TYPE_*value passed tocmsCreateTransform. - nativeValue() - Method in enum class cloud.opencode.base.image.codec.color.RenderingIntent
-
Native lcms2 / ICC value.
- nativeValue() - Method in enum class cloud.opencode.base.image.codec.jpeg.JpegSubsampling
-
Returns the native
TJSAMP_*integer for this subsampling mode.
O
- OpenImageCodecException - Exception Class in cloud.opencode.base.image.codec.exception
-
Image Codec Exception - Base exception for all image codec operations.
- OpenImageCodecException(String) - Constructor for exception class cloud.opencode.base.image.codec.exception.OpenImageCodecException
-
Creates exception with message.
- OpenImageCodecException(String, Throwable) - Constructor for exception class cloud.opencode.base.image.codec.exception.OpenImageCodecException
-
Creates exception with message and cause.
- outputFormat() - Method in class cloud.opencode.base.image.codec.color.ColorTransform
-
Destination pixel format.
P
- PERCEPTUAL - Enum constant in enum class cloud.opencode.base.image.codec.color.RenderingIntent
-
Perceptual: maintains visual relationships, default for most use cases.
- PixelFormat - Enum Class in cloud.opencode.base.image.codec.color
-
Pixel format describing channel layout, bit depth and ordering for buffers passed to
ColorTransform. - PngDecoder - Class in cloud.opencode.base.image.codec.png
-
Pure-Java PNG decoder for image embedding / general use.
- PngEncoder - Class in cloud.opencode.base.image.codec.png
-
Pure-Java PNG encoder for image embedding / general use.
Q
- quality() - Method in record class cloud.opencode.base.image.codec.jpeg.JpegOptions
-
Returns the value of the
qualityrecord component. - quality() - Method in record class cloud.opencode.base.image.codec.webp.WebpOptions
-
Returns the value of the
qualityrecord component.
R
- rasterize(String, float) - Method in class cloud.opencode.base.image.codec.font.Font
-
Rasterizes a string into a single alpha bitmap at the given pixel height.
- rasterizeCodepoint(int, float) - Method in class cloud.opencode.base.image.codec.font.Font
-
Rasterizes a single codepoint into an alpha bitmap at the given pixel height.
- readHeader(byte[]) - Static method in class cloud.opencode.base.image.codec.jpeg.JpegCodec
-
Reads dimensions and subsampling mode from a JPEG byte stream without decoding pixels.
- readHeader(byte[]) - Static method in class cloud.opencode.base.image.codec.webp.WebpCodec
-
Reads dimensions from a WebP byte stream without decoding pixels.
- RELATIVE_COLORIMETRIC - Enum constant in enum class cloud.opencode.base.image.codec.color.RenderingIntent
-
Relative colorimetric: maps in-gamut colors precisely, clips out-of-gamut.
- RenderingIntent - Enum Class in cloud.opencode.base.image.codec.color
-
ICC rendering intent — determines how out-of-gamut colors are handled when mapping between two color profiles.
- rgb() - Method in record class cloud.opencode.base.image.codec.bmp.DecodedBmp
-
Returns the value of the
rgbrecord component. - rgb() - Method in record class cloud.opencode.base.image.codec.jpeg.DecodedJpeg
-
Returns the value of the
rgbrecord component. - rgb() - Method in record class cloud.opencode.base.image.codec.png.DecodedPng
-
Returns the value of the
rgbrecord component. - RGB - Enum constant in enum class cloud.opencode.base.image.codec.webp.WebpFormat
-
RGB pixel data, 3 bytes per pixel. | RGB 像素数据,每像素 3 字节。
- RGB_8 - Enum constant in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
8-bit RGB, 3 bytes/pixel: R G B.
- rgba() - Method in record class cloud.opencode.base.image.codec.gif.DecodedGif
-
Returns the value of the
rgbarecord component. - RGBA - Enum constant in enum class cloud.opencode.base.image.codec.webp.WebpFormat
-
RGBA pixel data, 4 bytes per pixel. | RGBA 像素数据,每像素 4 字节。
- RGBA_8 - Enum constant in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
8-bit RGBA, 4 bytes/pixel: R G B A.
S
- S_411 - Enum constant in enum class cloud.opencode.base.image.codec.jpeg.JpegSubsampling
-
4:1:1 (horizontal quartering). | 4:1:1(水平四分采样)。
- S_420 - Enum constant in enum class cloud.opencode.base.image.codec.jpeg.JpegSubsampling
-
4:2:0 (horizontal + vertical halving, default). | 4:2:0(水平+垂直半采样,默认)。
- S_422 - Enum constant in enum class cloud.opencode.base.image.codec.jpeg.JpegSubsampling
-
4:2:2 (horizontal halving). | 4:2:2(水平半采样)。
- S_440 - Enum constant in enum class cloud.opencode.base.image.codec.jpeg.JpegSubsampling
-
4:4:0 (vertical halving). | 4:4:0(垂直半采样)。
- S_444 - Enum constant in enum class cloud.opencode.base.image.codec.jpeg.JpegSubsampling
-
4:4:4 (no chroma subsampling, highest quality). | 4:4:4(无色度下采样,最高质量)。
- S_GRAY - Enum constant in enum class cloud.opencode.base.image.codec.jpeg.JpegSubsampling
-
Grayscale. | 灰度。
- SATURATION - Enum constant in enum class cloud.opencode.base.image.codec.color.RenderingIntent
-
Saturation: preserves saturation, useful for charts/business graphics.
- scaleForPixelHeight(float) - Method in class cloud.opencode.base.image.codec.font.Font
-
Pixel scale factor mapping unscaled font units to pixels at the given pixel height (per stb_truetype's
stbtt_ScaleForPixelHeight). - srgb() - Static method in class cloud.opencode.base.image.codec.color.ColorProfile
-
Creates a built-in sRGB profile (D65 white point, IEC 61966-2-1).
- subsampling() - Method in record class cloud.opencode.base.image.codec.jpeg.JpegHeader
-
Returns the value of the
subsamplingrecord component. - subsampling() - Method in record class cloud.opencode.base.image.codec.jpeg.JpegOptions
-
Returns the value of the
subsamplingrecord component.
T
- TextMetrics - Record Class in cloud.opencode.base.image.codec.font
-
Pixel-space metrics for a text run rendered at a specific pixel height.
- TextMetrics(int, int, int, int) - Constructor for record class cloud.opencode.base.image.codec.font.TextMetrics
-
Creates an instance of a
TextMetricsrecord class. - toString() - Method in record class cloud.opencode.base.image.codec.bmp.DecodedBmp
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.font.Bitmap
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.font.TextMetrics
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.gif.DecodedGif
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.jpeg.DecodedJpeg
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.jpeg.JpegHeader
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.jpeg.JpegOptions
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.png.DecodedPng
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.webp.DecodedWebp
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.webp.WebpHeader
-
Returns a string representation of this record class.
- toString() - Method in record class cloud.opencode.base.image.codec.webp.WebpOptions
-
Returns a string representation of this record class.
V
- valueOf(String) - Static method in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class cloud.opencode.base.image.codec.color.RenderingIntent
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class cloud.opencode.base.image.codec.jpeg.JpegSubsampling
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class cloud.opencode.base.image.codec.webp.WebpFormat
-
Returns the enum constant of this class with the specified name.
- values() - Static method in enum class cloud.opencode.base.image.codec.color.PixelFormat
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class cloud.opencode.base.image.codec.color.RenderingIntent
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class cloud.opencode.base.image.codec.jpeg.JpegSubsampling
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class cloud.opencode.base.image.codec.webp.WebpFormat
-
Returns an array containing the constants of this enum class, in the order they are declared.
- verticalMetricsAt(float) - Method in class cloud.opencode.base.image.codec.font.Font
-
Vertical font metrics in pixels at the given pixel height.
W
- WebpCodec - Class in cloud.opencode.base.image.codec.webp
-
WebP codec backed by libwebp via Foreign Function & Memory API.
- WebpFormat - Enum Class in cloud.opencode.base.image.codec.webp
-
Pixel layout used by WebP encode/decode operations.
- WebpHeader - Record Class in cloud.opencode.base.image.codec.webp
-
WebP header information returned by
WebpCodec.readHeader(byte[]). - WebpHeader(int, int) - Constructor for record class cloud.opencode.base.image.codec.webp.WebpHeader
-
Creates an instance of a
WebpHeaderrecord class. - WebpOptions - Record Class in cloud.opencode.base.image.codec.webp
-
Encoding options for
WebpCodecencode operations. - WebpOptions(boolean, float) - Constructor for record class cloud.opencode.base.image.codec.webp.WebpOptions
-
Compact constructor validating
qualityrange. - width() - Method in record class cloud.opencode.base.image.codec.bmp.DecodedBmp
-
Returns the value of the
widthrecord component. - width() - Method in record class cloud.opencode.base.image.codec.font.Bitmap
-
Returns the value of the
widthrecord component. - width() - Method in record class cloud.opencode.base.image.codec.font.TextMetrics
-
Returns the value of the
widthrecord component. - width() - Method in record class cloud.opencode.base.image.codec.gif.DecodedGif
-
Returns the value of the
widthrecord component. - width() - Method in record class cloud.opencode.base.image.codec.jpeg.DecodedJpeg
-
Returns the value of the
widthrecord component. - width() - Method in record class cloud.opencode.base.image.codec.jpeg.JpegHeader
-
Returns the value of the
widthrecord component. - width() - Method in record class cloud.opencode.base.image.codec.png.DecodedPng
-
Returns the value of the
widthrecord component. - width() - Method in record class cloud.opencode.base.image.codec.webp.DecodedWebp
-
Returns the value of the
widthrecord component. - width() - Method in record class cloud.opencode.base.image.codec.webp.WebpHeader
-
Returns the value of the
widthrecord component.
X
- x0() - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Returns the value of the
x0record component. - x1() - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Returns the value of the
x1record component. - xyz() - Static method in class cloud.opencode.base.image.codec.color.ColorProfile
-
Creates a built-in XYZ profile (linear, D50 white point).
Y
- y0() - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Returns the value of the
y0record component. - y1() - Method in record class cloud.opencode.base.image.codec.font.GlyphMetrics
-
Returns the value of the
y1record component.
All Classes and Interfaces|All Packages|Serialized Form