QRCode-Kotlin
Toggle table of contents
4.5.0
android
Platform filter
android
Switch theme
Search in API
QRCode-Kotlin
QRCode-Kotlin
/
qrcode.render.graphics
/
AndroidDrawingInterface
Android
Drawing
Interface
android
interface
AndroidDrawingInterface
(
source
)
Inheritors
BitmapGraphics
DrawScopeGraphics
Members
Functions
draw
Bitmap
Link copied to clipboard
android
abstract
fun
drawBitmap
(
img
:
Bitmap
,
x
:
Int
,
y
:
Int
)
draw
Ellipse
Link copied to clipboard
android
abstract
fun
drawEllipse
(
x
:
Int
,
y
:
Int
,
width
:
Int
,
height
:
Int
,
color
:
Int
,
thickness
:
Double
)
draw
Image
Link copied to clipboard
android
abstract
fun
drawImage
(
rawData
:
ByteArray
?
,
x
:
Int
,
y
:
Int
)
draw
Line
Link copied to clipboard
android
abstract
fun
drawLine
(
x1
:
Int
,
y1
:
Int
,
x2
:
Int
,
y2
:
Int
,
color
:
Int
,
thickness
:
Double
)
draw
Rect
Link copied to clipboard
android
abstract
fun
drawRect
(
x
:
Int
,
y
:
Int
,
width
:
Int
,
height
:
Int
,
color
:
Int
,
thickness
:
Double
)
draw
Round
Rect
Link copied to clipboard
android
abstract
fun
drawRoundRect
(
x
:
Int
,
y
:
Int
,
width
:
Int
,
height
:
Int
,
borderRadius
:
Int
,
color
:
Int
,
thickness
:
Double
)
fill
Link copied to clipboard
android
abstract
fun
fill
(
color
:
Int
)
fill
Ellipse
Link copied to clipboard
android
abstract
fun
fillEllipse
(
x
:
Int
,
y
:
Int
,
width
:
Int
,
height
:
Int
,
color
:
Int
)
fill
Rect
Link copied to clipboard
android
abstract
fun
fillRect
(
x
:
Int
,
y
:
Int
,
width
:
Int
,
height
:
Int
,
color
:
Int
)
fill
Round
Rect
Link copied to clipboard
android
abstract
fun
fillRoundRect
(
x
:
Int
,
y
:
Int
,
width
:
Int
,
height
:
Int
,
borderRadius
:
Int
,
color
:
Int
)
get
Bytes
Link copied to clipboard
android
abstract
fun
getBytes
(
format
:
String
=
"PNG"
,
quality
:
Int
=
100
)
:
ByteArray
native
Image
Link copied to clipboard
android
abstract
fun
nativeImage
(
)
:
Any