toggle menu
spotify-api-kotlin
4.1.3
common
switch theme
search in API
spotify-api-kotlin
/
com.soywiz.korim.format.jpg
/
JPEGDecoder
JPEGDecoder
class
JPEGDecoder
(
source
)
Members
Constructors
JPEGDecoder
Link copied to clipboard
constructor
(
)
Types
Adobe
Link copied to clipboard
class
Adobe
(
val
version
:
Int
,
val
flags0
:
Int
,
val
flags1
:
Int
,
val
transformCode
:
Boolean
)
Companion
Link copied to clipboard
object
Companion
Component
Link copied to clipboard
class
Component
(
val
lines
:
List
<
UByteArrayInt
>
,
val
scaleX
:
Float
,
val
scaleY
:
Float
)
Frame
Link copied to clipboard
class
Frame
(
var
extended
:
Boolean
,
var
progressive
:
Boolean
,
var
precision
:
Int
,
var
scanLines
:
Int
,
var
samplesPerLine
:
Int
,
var
components
:
ArrayList
<
JPEGDecoder.FrameComponent
>
,
var
componentsOrder
:
ArrayList
<
Int
>
,
var
maxH
:
Int
=
0
,
var
maxV
:
Int
=
0
)
Frame
Component
Link copied to clipboard
class
FrameComponent
(
val
h
:
Int
,
val
v
:
Int
,
var
quantizationIdx
:
Int
)
Huffman
Node
Link copied to clipboard
data
class
HuffmanNode
(
var
children
:
ArrayList
<
Any
>
=
arrayListOf()
,
var
index
:
Int
=
0
)
Image
Data
Link copied to clipboard
class
ImageData
(
val
width
:
Int
,
val
height
:
Int
,
val
data
:
UByteArrayInt
)
Image
Info
Link copied to clipboard
data
class
ImageInfo
(
val
width
:
Int
,
val
height
:
Int
)
Jfif
Link copied to clipboard
class
Jfif
(
versionMajor
:
Int
,
versionMinor
:
Int
,
densityUnits
:
Int
,
xDensity
:
Int
,
yDensity
:
Int
,
thumbWidth
:
Int
,
thumbHeight
:
Int
,
thumbData
:
UByteArrayInt
)
Functions
copy
To
Image
Data
Link copied to clipboard
fun
copyToImageData
(
imageData
:
JPEGDecoder.ImageData
)
parse
Link copied to clipboard
fun
parse
(
data
:
UByteArrayInt
)