Uses of Class
javafx.scene.image.Image
-
Packages that use Image 软件包 描述 javafx.embed.swing 提供一组在Swing应用程序中使用JavaFX的类。javafx.scene 为JavaFX Scene Graph API提供核心的基类集。javafx.scene.canvas 为canvas提供一组类,即渲染API的立即模式样式。javafx.scene.effect 提供一组用于将图形过滤效果附加到JavaFX Scene Graph节点的类。javafx.scene.image 提供加载和显示图像的一组类。javafx.scene.input 提供一组用于鼠标和键盘输入事件处理的类。javafx.scene.layout 提供类来支持用户界面布局。javafx.scene.paint 提供用于在渲染场景图时填充形状和背景的颜色和渐变类的集合。javafx.stage 提供JavaFX内容的顶级容器类。 -
-
Uses of Image in javafx.embed.swing
Methods in javafx.embed.swing with parameters of type Image Modifier and Type 方法 描述 static BufferedImage
SwingFXUtils. fromFXImage(Image img, BufferedImage bimg)
快照指定的JavaFXImage
对象,并将其像素的副本存储到一个BufferedImage
对象中,如果需要创建一个新对象。 -
Uses of Image in javafx.scene
Methods in javafx.scene that return Image Modifier and Type 方法 描述 Image
ImageCursor. getImage()
获取属性映像的值。Methods in javafx.scene that return types with arguments of type Image Modifier and Type 方法 描述 ReadOnlyObjectProperty<Image>
ImageCursor. imageProperty()
光标激活时显示的图像。Methods in javafx.scene with parameters of type Image Modifier and Type 方法 描述 static ImageCursor
ImageCursor. chooseBestCursor(Image[] images, double hotspotX, double hotspotY)
从指定的图像之一创建自定义图像光标。Constructors in javafx.scene with parameters of type Image Constructor 描述 ImageCursor(Image image)
从指定的图像构造一个ImageCursor
。ImageCursor(Image image, double hotspotX, double hotspotY)
从指定的图像和热点坐标构造一个ImageCursor
。 -
Uses of Image in javafx.scene.canvas
Methods in javafx.scene.canvas with parameters of type Image Modifier and Type 方法 描述 void
GraphicsContext. drawImage(Image img, double x, double y)
使用给定图像的宽度和高度在给定的x,y位置绘制图像。void
GraphicsContext. drawImage(Image img, double x, double y, double w, double h)
将图像绘制到画布的给定目标矩形中。void
GraphicsContext. drawImage(Image img, double sx, double sy, double sw, double sh, double dx, double dy, double dw, double dh)
将给定图像的指定源矩形绘制到Canvas的给定目标矩形。 -
Uses of Image in javafx.scene.effect
Methods in javafx.scene.effect that return Image Modifier and Type 方法 描述 Image
ImageInput. getSource()
获取属性源的值。Methods in javafx.scene.effect that return types with arguments of type Image Modifier and Type 方法 描述 ObjectProperty<Image>
ImageInput. sourceProperty()
来源Image
。Methods in javafx.scene.effect with parameters of type Image Modifier and Type 方法 描述 void
ImageInput. setSource(Image value)
设置属性源的值。Constructors in javafx.scene.effect with parameters of type Image Constructor 描述 ImageInput(Image source)
使用指定的源创建一个新的ImageInput实例。ImageInput(Image source, double x, double y)
使用指定的源x和y创建一个新的ImageInput实例。 -
Uses of Image in javafx.scene.image
Subclasses of Image in javafx.scene.image Modifier and Type Class 描述 class
WritableImage
WritableImage
类表示由应用程序提供的像素构建的自定义图形图像,可能来自任何数量来源的PixelReader
对象,包括从文件或URL读取的图像。Methods in javafx.scene.image that return Image Modifier and Type 方法 描述 Image
ImageView. getImage()
获取属性映像的值。Methods in javafx.scene.image that return types with arguments of type Image Modifier and Type 方法 描述 ObjectProperty<Image>
ImageView. imageProperty()
Image
要画ImageView
。Methods in javafx.scene.image with parameters of type Image Modifier and Type 方法 描述 void
ImageView. setImage(Image value)
设置属性图像的值。Constructors in javafx.scene.image with parameters of type Image Constructor 描述 ImageView(Image image)
使用给定的图像分配一个新的ImageView对象。 -
Uses of Image in javafx.scene.input
Methods in javafx.scene.input that return Image Modifier and Type 方法 描述 Image
Dragboard. getDragView()
获取用作拖动视图的图像。Image
Clipboard. getImage()
从先前已注册的剪贴板获取图像。Image
ClipboardContent. getImage()
从ClipboardContent
获取图像,以前已被放置。Methods in javafx.scene.input with parameters of type Image Modifier and Type 方法 描述 boolean
ClipboardContent. putImage(Image i)
将图像放入ClipboardContent
。void
Dragboard. setDragView(Image image)
设置拖放手势中传输的数据的视觉表示。void
Dragboard. setDragView(Image image, double offsetX, double offsetY)
设置拖放手势中传输的数据的视觉表示。 -
Uses of Image in javafx.scene.layout
Methods in javafx.scene.layout that return Image Modifier and Type 方法 描述 Image
BackgroundImage. getImage()
要使用的图像。Image
BorderImage. getImage()
要使用的图像。Constructors in javafx.scene.layout with parameters of type Image Constructor 描述 BackgroundImage(Image image, BackgroundRepeat repeatX, BackgroundRepeat repeatY, BackgroundPosition position, BackgroundSize size)
创建一个新的BackgroundImage。BorderImage(Image image, BorderWidths widths, Insets insets, BorderWidths slices, boolean filled, BorderRepeat repeatX, BorderRepeat repeatY)
创建一个新的BorderImage。 -
Uses of Image in javafx.scene.paint
Methods in javafx.scene.paint that return Image Modifier and Type 方法 描述 Image
PhongMaterial. getBumpMap()
获取属性bumpMap的值。Image
PhongMaterial. getDiffuseMap()
获取属性diffuseMap的值。Image
ImagePattern. getImage()
获取要用作油漆的图像。Image
PhongMaterial. getSelfIlluminationMap()
获取属性selfIlluminationMap的值。Image
PhongMaterial. getSpecularMap()
获取属性specularMap的值。Methods in javafx.scene.paint that return types with arguments of type Image Modifier and Type 方法 描述 ObjectProperty<Image>
PhongMaterial. bumpMapProperty()
这个PhongMaterial
的凹凸贴图,这是一个正常的地图,存储为RGBImage
。ObjectProperty<Image>
PhongMaterial. diffuseMapProperty()
这个PhongMaterial
的漫反射图。ObjectProperty<Image>
PhongMaterial. selfIlluminationMapProperty()
这个自拍照片PhongMaterial
。ObjectProperty<Image>
PhongMaterial. specularMapProperty()
这个PhongMaterial
的镜面地图。Methods in javafx.scene.paint with parameters of type Image Modifier and Type 方法 描述 void
PhongMaterial. setBumpMap(Image value)
设置属性bumpMap的值。void
PhongMaterial. setDiffuseMap(Image value)
设置propertyMap属性的值。void
PhongMaterial. setSelfIlluminationMap(Image value)
设置属性selfIlluminationMap的值。void
PhongMaterial. setSpecularMap(Image value)
设置属性specularMap的值。Constructors in javafx.scene.paint with parameters of type Image Constructor 描述 ImagePattern(Image image)
从指定的图像创建一个新的ImagePattern实例。ImagePattern(Image image, double x, double y, double width, double height, boolean proportional)
创建一个新的ImagePattern实例。PhongMaterial(Color diffuseColor, Image diffuseMap, Image specularMap, Image bumpMap, Image selfIlluminationMap)
使用指定的颜色和图像为其diffuseColor
属性创建PhongMaterial
类的新实例。 -
Uses of Image in javafx.stage
Methods in javafx.stage that return types with arguments of type Image Modifier and Type 方法 描述 ObservableList<Image>
Stage. getIcons()
Gets the icon images to be used in the window decorations and when minimized.
-