Uses of Class
java.awt.Image
-
Packages that use Image 软件包 描述 java.applet 提供创建applet所需的类以及applet用于与其applet上下文通信的类。java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.awt.dnd 拖放是在许多图形用户界面系统中发现的直接操纵手势,其提供了在GUI中与表示元素逻辑相关联的两个实体之间传递信息的机制。java.awt.font 提供与字体相关的类和界面。java.awt.im.spi 提供可用于开发可与任何Java运行时环境一起使用的输入方法的接口。java.awt.image 提供用于创建和修改图像的类。java.beans 包含与开发 bean相关的类 - 基于JavaBeans™体系结构的组件。javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。javax.swing.plaf 提供一个接口和许多抽象类,Swing使用它们来提供其可插入的外观功能。javax.swing.text.html 提供类HTMLEditorKit
以及用于创建HTML文本编辑器的支持类。 -
-
Uses of Image in java.applet
Methods in java.applet that return Image 变量和类型 方法 描述 Image
Applet. getImage(URL url)
已过时。返回一个Image
对象,然后可以在屏幕上绘制。Image
Applet. getImage(URL url, String name)
已过时。返回一个Image
对象,然后可以在屏幕上绘制。Image
AppletContext. getImage(URL url)
已过时。返回一个Image
对象,然后可以在屏幕上绘制。 -
Uses of Image in java.awt
Fields in java.awt declared as Image 变量和类型 字段 描述 protected Image
Component.FlipBufferStrategy. drawBuffer
绘图缓冲区Methods in java.awt that return Image 变量和类型 方法 描述 Image
Component. createImage(int width, int height)
创建用于双缓冲的屏幕外可绘制图像。Image
Component. createImage(ImageProducer producer)
从指定的图像生成器创建图像。Image
Toolkit. createImage(byte[] imagedata)
创建一个图像,对存储在指定字节数组中的图像进行解码。abstract Image
Toolkit. createImage(byte[] imagedata, int imageoffset, int imagelength)
创建一个图像,该图像对存储在指定字节数组中的图像进行解码,并以指定的偏移量和长度进行解码。abstract Image
Toolkit. createImage(ImageProducer producer)
使用指定的图像生成器创建图像。abstract Image
Toolkit. createImage(String filename)
返回从指定文件获取像素数据的图像。abstract Image
Toolkit. createImage(URL url)
返回从指定的URL获取像素数据的图像。protected Image
Component.FlipBufferStrategy. getBackBuffer()
Image
Frame. getIconImage()
返回要显示为此帧图标的图像。Image
Taskbar. getIconImage()
获取此应用程序图标的图像。abstract Image
Toolkit. getImage(String filename)
返回从指定文件获取像素数据的图像,其格式可以是GIF,JPEG或PNG。abstract Image
Toolkit. getImage(URL url)
返回从指定的URL获取像素数据的图像。Image
TrayIcon. getImage()
返回用于此TrayIcon
的当前图像。Image
Image. getScaledInstance(int width, int height, int hints)
创建此图像的缩放版本。Methods in java.awt that return types with arguments of type Image 变量和类型 方法 描述 List<Image>
Window. getIconImages()
返回要显示为此窗口图标的图像序列。Methods in java.awt with parameters of type Image 变量和类型 方法 描述 void
MediaTracker. addImage(Image image, int id)
将图像添加到此媒体跟踪器正在跟踪的图像列表中。void
MediaTracker. addImage(Image image, int id, int w, int h)
将缩放图像添加到此媒体跟踪器正在跟踪的图像列表中。int
Component. checkImage(Image image, int width, int height, ImageObserver observer)
返回指定图像的屏幕表示构造的状态。int
Component. checkImage(Image image, ImageObserver observer)
返回指定图像的屏幕表示构造的状态。abstract int
Toolkit. checkImage(Image image, int width, int height, ImageObserver observer)
指示正在准备显示的指定图像的构造状态。Cursor
Toolkit. createCustomCursor(Image cursor, Point hotSpot, String name)
创建一个新的自定义光标对象。abstract boolean
Graphics. drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer)
绘制与当前可用的指定图像一样多的指定区域,即时缩放它以适合目标可绘制表面的指定区域。abstract boolean
Graphics. drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer)
绘制与当前可用的指定图像一样多的指定区域,即时缩放它以适合目标可绘制表面的指定区域。abstract boolean
Graphics. drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer)
绘制已经缩放以适合指定矩形内部的指定图像。abstract boolean
Graphics. drawImage(Image img, int x, int y, int width, int height, ImageObserver observer)
绘制已经缩放以适合指定矩形内部的指定图像。abstract boolean
Graphics. drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer)
绘制尽可能多的指定图像。abstract boolean
Graphics. drawImage(Image img, int x, int y, ImageObserver observer)
绘制尽可能多的指定图像。abstract boolean
Graphics2D. drawImage(Image img, AffineTransform xform, ImageObserver obs)
渲染图像,在绘制之前将图像空间的变换应用到用户空间。boolean
Component. imageUpdate(Image img, int infoflags, int x, int y, int w, int h)
图像更改后重新绘制组件。boolean
Component. prepareImage(Image image, int width, int height, ImageObserver observer)
准备一个图像,以指定的宽度和高度在此组件上进行渲染。boolean
Component. prepareImage(Image image, ImageObserver observer)
准备要在此组件上呈现的图像。abstract boolean
Toolkit. prepareImage(Image image, int width, int height, ImageObserver observer)
准备要渲染的图像。void
MediaTracker. removeImage(Image image)
从此媒体跟踪器中删除指定的图像。void
MediaTracker. removeImage(Image image, int id)
从此媒体跟踪器的指定跟踪ID中删除指定的图像。void
MediaTracker. removeImage(Image image, int id, int width, int height)
从此媒体跟踪器中删除具有指定宽度,高度和ID的指定图像。void
Taskbar. setIconImage(Image image)
将此应用程序的图标更改为提供的图像。void
Window. setIconImage(Image image)
设置要显示为此窗口图标的图像。void
TrayIcon. setImage(Image image)
设置此TrayIcon
的图像。void
Taskbar. setWindowIconBadge(Window w, Image badge)
在指定窗口的任务区域中为此应用程序的图标添加小徽章。Method parameters in java.awt with type arguments of type Image 变量和类型 方法 描述 void
Window. setIconImages(List<? extends Image> icons)
设置要显示的图像序列作为此窗口的图标。Constructors in java.awt with parameters of type Image 构造器 描述 TrayIcon(Image image)
使用指定的图像创建TrayIcon
。TrayIcon(Image image, String tooltip)
使用指定的图像和工具提示文本创建TrayIcon
。TrayIcon(Image image, String tooltip, PopupMenu popup)
使用指定的图像,工具提示和弹出菜单创建TrayIcon
。 -
Uses of Image in java.awt.dnd
Methods in java.awt.dnd with parameters of type Image 变量和类型 方法 描述 protected DragSourceContext
DragSource. createDragSourceContext(DragGestureEvent dgl, Cursor dragCursor, Image dragImage, Point imageOffset, Transferable t, DragSourceListener dsl)
创建DragSourceContext
以处理当前拖动操作。void
DragGestureEvent. startDrag(Cursor dragCursor, Image dragImage, Point imageOffset, Transferable transferable, DragSourceListener dsl)
启动给定的初始拖拽Cursor
显示,拖动Image
,所述的偏移Image
,所述Transferable
对象和DragSourceListener
使用。void
DragSource. startDrag(DragGestureEvent trigger, Cursor dragCursor, Image dragImage, Point dragOffset, Transferable transferable, DragSourceListener dsl)
开始拖动,给定DragGestureEvent
启动拖动,初始Cursor
使用,Image
拖动,Image
原点的偏移量来自Cursor
在触发瞬间的热点,拖动的主题数据,以及DragSourceListener
。void
DragSource. startDrag(DragGestureEvent trigger, Cursor dragCursor, Image dragImage, Point imageOffset, Transferable transferable, DragSourceListener dsl, FlavorMap flavorMap)
开始一拖,考虑到DragGestureEvent
启动拖动,初步Cursor
用,Image
拖动,偏移量的Image
从的热点起源Cursor
在扳机的瞬间,Transferable
拖动的目标数据,DragSourceListener
和FlavorMap
。Constructors in java.awt.dnd with parameters of type Image 构造器 描述 DragSourceContext(DragGestureEvent trigger, Cursor dragCursor, Image dragImage, Point offset, Transferable t, DragSourceListener dsl)
从DragSource
调用,这个构造函数创建一个新的DragSourceContext
给定DragSourceContextPeer
用于此Drag,DragGestureEvent
触发Drag,初始Cursor
用于Drag,一个(可选)Image
显示当Drag正在发生时,偏移量为Image
来自触发事件瞬间的热点,Transferable
主题数据,以及DragSourceListener
在拖放操作期间使用。 -
Uses of Image in java.awt.font
Constructors in java.awt.font with parameters of type Image 构造器 描述 ImageGraphicAttribute(Image image, int alignment)
构造一个ImageGraphicAttribute
从指定Image
。ImageGraphicAttribute(Image image, int alignment, float originX, float originY)
构造一个ImageGraphicAttribute
从指定Image
。 -
Uses of Image in java.awt.im.spi
Methods in java.awt.im.spi that return Image 变量和类型 方法 描述 Image
InputMethodDescriptor. getInputMethodIcon(Locale inputLocale)
返回相应输入方法的图标。 -
Uses of Image in java.awt.image
Subclasses of Image in java.awt.image 变量和类型 类 描述 class
AbstractMultiResolutionImage
此类为要实现MultiResolutionImage
接口的类提供了几种Image
方法的默认实现。class
BaseMultiResolutionImage
此类是AbstractMultiResolutionImage
类的基于数组的实现。class
BufferedImage
BufferedImage
子类描述了具有可访问的图像数据缓冲区的Image
。class
VolatileImage
VolatileImage是一种图像,由于超出应用程序控制的情况(例如,由操作系统或其他应用程序引起的情况),它可能随时丢失其内容。Methods in java.awt.image that return Image 变量和类型 方法 描述 protected abstract Image
AbstractMultiResolutionImage. getBaseImage()
返回表示图像最佳版本的基本图像,以便以默认宽度和高度进行渲染。Image
MultiResolutionImage. getResolutionVariant(double destImageWidth, double destImageHeight)
获取特定图像,该图像是以指定大小表示此逻辑图像的最佳变体。Methods in java.awt.image that return types with arguments of type Image 变量和类型 方法 描述 List<Image>
MultiResolutionImage. getResolutionVariants()
获取所有分辨率变体的可读列表。Methods in java.awt.image with parameters of type Image 变量和类型 方法 描述 boolean
ImageObserver. imageUpdate(Image img, int infoflags, int x, int y, int width, int height)
当有关使用异步接口先前请求的图像的信息变得可用时,调用此方法。Constructors in java.awt.image with parameters of type Image 构造器 描述 BaseMultiResolutionImage(int baseImageIndex, Image... resolutionVariants)
使用给定的基本图像索引和分辨率变体创建多分辨率图像。BaseMultiResolutionImage(Image... resolutionVariants)
使用给定的分辨率变体创建多分辨率图像。PixelGrabber(Image img, int x, int y, int w, int h, boolean forceRGB)
创建PixelGrabber对象以从指定图像中抓取(x,y,w,h)矩形像素部分。PixelGrabber(Image img, int x, int y, int w, int h, int[] pix, int off, int scansize)
创建PixelGrabber对象以从指定图像中抓取(x,y,w,h)矩形像素部分到给定数组中。 -
Uses of Image in java.beans
Methods in java.beans that return Image 变量和类型 方法 描述 Image
BeanInfo. getIcon(int iconKind)
返回可用于表示工具箱或工具栏中的bean的图像。Image
SimpleBeanInfo. getIcon(int iconKind)
声称没有可用的图标。Image
SimpleBeanInfo. loadImage(String resourceName)
这是一种帮助加载图标图像的实用方法。 -
Uses of Image in javax.swing
Fields in javax.swing declared as Image 变量和类型 字段 描述 protected Image
JViewport. backingStoreImage
用于后备存储的视图图像。Methods in javax.swing that return Image 变量和类型 方法 描述 static Image
GrayFilter. createDisabledImage(Image i)
创建禁用的图像Image
TransferHandler. getDragImage()
返回拖动图像。Image
ImageIcon. getImage()
返回此图标的Image
。Image
RepaintManager. getOffscreenBuffer(Component c, int proposedWidth, int proposedHeight)
返回应该用作组件c
的双缓冲区的屏幕外缓冲区。Image
RepaintManager. getVolatileOffscreenBuffer(Component c, int proposedWidth, int proposedHeight)
返回一个易失性的屏幕外缓冲区,该缓冲区应该用作具有指定组件c
的双缓冲区。Methods in javax.swing with parameters of type Image 变量和类型 方法 描述 static Image
GrayFilter. createDisabledImage(Image i)
创建禁用的图像boolean
DebugGraphics. drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer)
覆盖Graphics.drawImage
。boolean
DebugGraphics. drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer)
覆盖Graphics.drawImage
。boolean
DebugGraphics. drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer)
覆盖Graphics.drawImage
。boolean
DebugGraphics. drawImage(Image img, int x, int y, int width, int height, ImageObserver observer)
覆盖Graphics.drawImage
。boolean
DebugGraphics. drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer)
覆盖Graphics.drawImage
。boolean
DebugGraphics. drawImage(Image img, int x, int y, ImageObserver observer)
覆盖Graphics.drawImage
。boolean
AbstractButton. imageUpdate(Image img, int infoflags, int x, int y, int w, int h)
如果当前Icon
的Image
不等于传入Image
img
,Image
覆盖此值以返回false。boolean
JLabel. imageUpdate(Image img, int infoflags, int x, int y, int w, int h)
如果当前图标的图像不等于图像img
传递的图像,img
覆盖此参数以返回false。boolean
JLayer. imageUpdate(Image img, int infoflags, int x, int y, int w, int h)
代表其功能LayerUI.imageUpdate(java.awt.Image, int, int, int, int, int, JLayer)
方法,如果LayerUI
设置。boolean
JSlider. imageUpdate(Image img, int infoflags, int x, int y, int w, int h)
图像更改后重新绘制组件。protected void
ImageIcon. loadImage(Image image)
加载图像,仅在加载图像时返回。void
TransferHandler. setDragImage(Image img)
设置拖动图像参数。void
ImageIcon. setImage(Image image)
设置此图标显示的图像。Constructors in javax.swing with parameters of type Image 构造器 描述 ImageIcon(Image image)
从图像对象创建ImageIcon。ImageIcon(Image image, String description)
从图像创建ImageIcon。 -
Uses of Image in javax.swing.plaf
Methods in javax.swing.plaf with parameters of type Image 变量和类型 方法 描述 boolean
LayerUI. imageUpdate(Image img, int infoflags, int x, int y, int w, int h, JLayer<? extends V> l)
将其功能委托给JLayer.imageUpdate
方法的默认实现,该方法继承自JLayer
的基类。 -
Uses of Image in javax.swing.text.html
Methods in javax.swing.text.html that return Image 变量和类型 方法 描述 Image
ImageView. getImage()
返回要渲染的图像。
-