jvmMain.vis.canvas.javaFx.JavafxCanvas.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lets-plot-common Show documentation
Show all versions of lets-plot-common Show documentation
Lets-Plot JVM package without rendering part
/*
* Copyright (c) 2019. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
package jetbrains.datalore.vis.canvas.javaFx
import javafx.scene.SnapshotParameters
import javafx.scene.image.Image
import javafx.scene.image.WritableImage
import javafx.scene.paint.Color
import jetbrains.datalore.base.async.Async
import jetbrains.datalore.base.geometry.Vector
import jetbrains.datalore.vis.canvas.Canvas
import jetbrains.datalore.vis.canvas.ScaledCanvas
import jetbrains.datalore.vis.canvas.javaFx.JavafxCanvasUtil.asyncTakeSnapshotImage
import kotlin.math.roundToInt
import javafx.scene.canvas.Canvas as NativeCanvas
internal class JavafxCanvas
private constructor(
val nativeCanvas: NativeCanvas,
size: Vector,
pixelRatio: Double
) : ScaledCanvas(
JavafxContext2d(nativeCanvas.graphicsContext2D),
size,
pixelRatio
) {
companion object {
fun create(size: Vector, pixelRatio: Double): JavafxCanvas {
return JavafxCanvas(NativeCanvas(), size, pixelRatio)
}
}
init {
nativeCanvas.width = size.x * pixelRatio
nativeCanvas.height = size.y * pixelRatio
}
override fun takeSnapshot(): Async {
return asyncTakeSnapshotImage(nativeCanvas).map(
success = { image -> JavafxSnapshot(image) }
)
}
override fun immidiateSnapshot(): Canvas.Snapshot {
val params = SnapshotParameters()
params.fill = Color.TRANSPARENT
return JavafxSnapshot(nativeCanvas.snapshot(params, null))
}
internal class JavafxSnapshot(val image: Image) : Canvas.Snapshot {
override fun copy() =
JavafxSnapshot(
WritableImage(
image.pixelReader,
image.width.roundToInt(),
image.height.roundToInt()
)
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy