commonMain.io.nacular.doodle.image.Image.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-jvm Show documentation
Show all versions of core-jvm Show documentation
A pure Kotlin, UI framework for the Web and Desktop
package io.nacular.doodle.image
import io.nacular.doodle.geometry.Size
/**
* An image that has been loaded into the application.
*/
public interface Image {
/** The width, height of the image */
public val size: Size
/** The source of the image */
public val source: String
}
public inline val Image.width: Double get () = size.width
public inline val Image.height: Double get() = size.height
© 2015 - 2025 Weber Informatics LLC | Privacy Policy