当前位置: 首页>>代码示例>>Java>>正文


Java IIOReadUpdateListener.thumbnailUpdate方法代码示例

本文整理汇总了Java中javax.imageio.event.IIOReadUpdateListener.thumbnailUpdate方法的典型用法代码示例。如果您正苦于以下问题:Java IIOReadUpdateListener.thumbnailUpdate方法的具体用法?Java IIOReadUpdateListener.thumbnailUpdate怎么用?Java IIOReadUpdateListener.thumbnailUpdate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.imageio.event.IIOReadUpdateListener的用法示例。


在下文中一共展示了IIOReadUpdateListener.thumbnailUpdate方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: processThumbnailUpdate

import javax.imageio.event.IIOReadUpdateListener; //导入方法依赖的package包/类
/**
 * Notifies all installed read update listeners, by calling their
 * thumbnailUpdate methods, that the set of samples has changed.
 *
 * @param image the buffered image that is being updated
 * @param minX the X coordinate of the top-left pixel in this pass
 * @param minY the Y coordinate of the top-left pixel in this pass
 * @param width the total width of the rectangle covered by this
 * pass, including skipped pixels
 * @param height the total height of the rectangle covered by this
 * pass, including skipped pixels
 * @param periodX the horizontal sample interval
 * @param periodY the vertical sample interval
 * @param bands the affected bands in the destination
 */
protected void processThumbnailUpdate(BufferedImage image, int minX, int minY,
                                      int width, int height, int periodX,
                                      int periodY, int[] bands)
{
  if (updateListeners != null)
    {
      Iterator it = updateListeners.iterator();

      while (it.hasNext())
        {
          IIOReadUpdateListener listener = (IIOReadUpdateListener) it.next();
          listener.thumbnailUpdate(this, image, minX, minY, width, height,
                                   periodX, periodY, bands);
        }
    }
}
 
开发者ID:vilie,项目名称:javify,代码行数:32,代码来源:ImageReader.java

示例2: processThumbnailUpdate

import javax.imageio.event.IIOReadUpdateListener; //导入方法依赖的package包/类
/**
  * Notifies all installed read update listeners, by calling their
  * thumbnailUpdate methods, that the set of samples has changed.
  *
  * @param image the buffered image that is being updated
  * @param minX the X coordinate of the top-left pixel in this pass
  * @param minY the Y coordinate of the top-left pixel in this pass
  * @param width the total width of the rectangle covered by this
  * pass, including skipped pixels
  * @param height the total height of the rectangle covered by this
  * pass, including skipped pixels
  * @param periodX the horizontal sample interval
  * @param periodY the vertical sample interval
  * @param bands the affected bands in the destination
  */
 protected void processThumbnailUpdate(BufferedImage image, int minX, int minY,
				int width, int height, int periodX,
				int periodY, int[] bands)
 {
   if (updateListeners != null)
     {
Iterator it = updateListeners.iterator();

while (it.hasNext())
  {
    IIOReadUpdateListener listener = (IIOReadUpdateListener) it.next();
    listener.thumbnailUpdate(this, image, minX, minY, width, height,
			     periodX, periodY, bands);
  }
     }
 }
 
开发者ID:nmldiegues,项目名称:jvm-stm,代码行数:32,代码来源:ImageReader.java

示例3: processThumbnailUpdate

import javax.imageio.event.IIOReadUpdateListener; //导入方法依赖的package包/类
protected void processThumbnailUpdate(final BufferedImage theThumbnail,
                final int minX, final int minY, final int width,
                final int height, final int periodX, final int periodY,
                final int[] bands) {
    if (updateListeners != null) {
        for (final IIOReadUpdateListener listener : updateListeners) {
            listener.thumbnailUpdate(this, theThumbnail, minX, minY, width,
                height, periodX, periodY, bands);
        }
    }
}
 
开发者ID:shannah,项目名称:cn1,代码行数:12,代码来源:ImageReader.java

示例4: processThumbnailUpdate

import javax.imageio.event.IIOReadUpdateListener; //导入方法依赖的package包/类
/**
 * Broadcasts the update of a set of samples in a thumbnail image
 * to all registered <code>IIOReadUpdateListener</code>s by
 * calling their <code>thumbnailUpdate</code> method.  Subclasses may
 * use this method as a convenience.
 *
 * @param theThumbnail the <code>BufferedImage</code> thumbnail
 * being updated.
 * @param minX the X coordinate of the upper-left pixel included
 * in the pass.
 * @param minY the X coordinate of the upper-left pixel included
 * in the pass.
 * @param width the total width of the area being updated, including
 * pixels being skipped if <code>periodX &gt; 1</code>.
 * @param height the total height of the area being updated,
 * including pixels being skipped if <code>periodY &gt; 1</code>.
 * @param periodX the horizontal separation between pixels.
 * @param periodY the vertical separation between pixels.
 * @param bands an array of <code>int</code>s indicating the
 * set of affected bands of the destination.
 */
protected void processThumbnailUpdate(BufferedImage theThumbnail,
                                      int minX, int minY,
                                      int width, int height,
                                      int periodX, int periodY,
                                      int[] bands) {
    if (updateListeners == null) {
        return;
    }
    int numListeners = updateListeners.size();
    for (int i = 0; i < numListeners; i++) {
        IIOReadUpdateListener listener =
            (IIOReadUpdateListener)updateListeners.get(i);
        listener.thumbnailUpdate(this,
                                 theThumbnail,
                                 minX, minY,
                                 width, height,
                                 periodX, periodY,
                                 bands);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:42,代码来源:ImageReader.java

示例5: processThumbnailUpdate

import javax.imageio.event.IIOReadUpdateListener; //导入方法依赖的package包/类
/**
 * Broadcasts the update of a set of samples in a thumbnail image
 * to all registered {@code IIOReadUpdateListener}s by
 * calling their {@code thumbnailUpdate} method.  Subclasses may
 * use this method as a convenience.
 *
 * @param theThumbnail the {@code BufferedImage} thumbnail
 * being updated.
 * @param minX the X coordinate of the upper-left pixel included
 * in the pass.
 * @param minY the X coordinate of the upper-left pixel included
 * in the pass.
 * @param width the total width of the area being updated, including
 * pixels being skipped if {@code periodX > 1}.
 * @param height the total height of the area being updated,
 * including pixels being skipped if {@code periodY > 1}.
 * @param periodX the horizontal separation between pixels.
 * @param periodY the vertical separation between pixels.
 * @param bands an array of {@code int}s indicating the
 * set of affected bands of the destination.
 */
protected void processThumbnailUpdate(BufferedImage theThumbnail,
                                      int minX, int minY,
                                      int width, int height,
                                      int periodX, int periodY,
                                      int[] bands) {
    if (updateListeners == null) {
        return;
    }
    int numListeners = updateListeners.size();
    for (int i = 0; i < numListeners; i++) {
        IIOReadUpdateListener listener =
            updateListeners.get(i);
        listener.thumbnailUpdate(this,
                                 theThumbnail,
                                 minX, minY,
                                 width, height,
                                 periodX, periodY,
                                 bands);
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:42,代码来源:ImageReader.java


注:本文中的javax.imageio.event.IIOReadUpdateListener.thumbnailUpdate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。