Uses of Class
io.github.sosuisen.jfxbuilder.graphics.WritableImageBuilder
Packages that use WritableImageBuilder
-
Uses of WritableImageBuilder in io.github.sosuisen.jfxbuilder.graphics
Methods in io.github.sosuisen.jfxbuilder.graphics that return WritableImageBuilderModifier and TypeMethodDescriptionWritableImageBuilder.apply
(Consumer<WritableImage> func) Applies a function to the WritableImage instance being constructed.static WritableImageBuilder
WritableImageBuilder.create
(int width, int height) Accepts the constructor arguments ofWritableImage(int, int)
and returns an instance ofWritableImageBuilder
.static WritableImageBuilder
WritableImageBuilder.create
(PixelBuffer<? extends Buffer> pixelBuffer) Accepts the constructor arguments ofWritableImage(PixelBuffer)
and returns an instance ofWritableImageBuilder
.static WritableImageBuilder
WritableImageBuilder.create
(PixelReader reader, int width, int height) Accepts the constructor arguments ofWritableImage(PixelReader, int, int)
and returns an instance ofWritableImageBuilder
.static WritableImageBuilder
WritableImageBuilder.create
(PixelReader reader, int x, int y, int width, int height) Accepts the constructor arguments ofWritableImage(PixelReader, int, int, int, int)
and returns an instance ofWritableImageBuilder
.WritableImageBuilder.errorPropertyApply
(Consumer<ReadOnlyBooleanProperty> op) Applies a function to theerrorProperty
of the instance being constructed.WritableImageBuilder.exceptionPropertyApply
(Consumer<ReadOnlyObjectProperty<Exception>> op) Applies a function to theexceptionProperty
of the instance being constructed.WritableImageBuilder.heightPropertyApply
(Consumer<ReadOnlyDoubleProperty> op) Applies a function to theheightProperty
of the instance being constructed.WritableImageBuilder.progressPropertyApply
(Consumer<ReadOnlyDoubleProperty> op) Applies a function to theprogressProperty
of the instance being constructed.WritableImageBuilder.widthPropertyApply
(Consumer<ReadOnlyDoubleProperty> op) Applies a function to thewidthProperty
of the instance being constructed.