Package-level declarations
Types
Link copied to clipboard
data class ImageBitmapItem(val id: String = Uuid.random().toString(), val type: StickyType = StickyType.BITMAP_IMAGE, val isFocus: Boolean = false, val firstPoint: Offset, val translate: Offset = Offset.Zero, val scaleFactor: Float = 1.0f, val scaleOffset: Offset = Offset.Zero, val property: Property) : Attachable
Represents an image bitmap item that can be attached to a canvas or document. This class stores transformation properties such as position, scale, and translation.
Link copied to clipboard
data class ImageBitmapProperty(val size: DpSize, val imageBitmap: ImageBitmap?, val color: Color, val alignment: Alignment, val contentScale: ContentScale, val alpha: Float, val colorFilter: ColorFilter?) : Property
Represents the properties of an image bitmap used in a drawable element. This class defines various attributes such as size, alignment, and color properties.