类 AbstractBufferedImageOp
- java.lang.Object
-
- org.meteoinfo.image.filter.AbstractBufferedImageOp
-
- 所有已实现的接口:
BufferedImageOp,Cloneable
- 直接已知子类:
ApplyMaskFilter,BicubicScaleFilter,BlockFilter,BorderFilter,BoxBlurFilter,ChromaKeyFilter,ColorHalftoneFilter,CompositeFilter,CompoundFilter,ConvolveFilter,CropFilter,DeinterlaceFilter,DoGFilter,FeedbackFilter,FlipFilter,GlintFilter,GradientFilter,GradientWipeFilter,HalftoneFilter,InterpolateFilter,IteratedFilter,KeyFilter,LaplaceFilter,LensBlurFilter,MirrorFilter,MotionBlurFilter,MotionBlurOp,PointFilter,RenderTextFilter,ScaleFilter,ScratchFilter,ShadowFilter,ShatterFilter,ShineFilter,SmartBlurFilter,TileImageFilter,TransformFilter,TransitionFilter,VariableBlurFilter,WholeImageFilter
public abstract class AbstractBufferedImageOp extends Object implements BufferedImageOp, Cloneable
A convenience class which implements those methods of BufferedImageOp which are rarely changed.
-
-
构造器概要
构造器 构造器 说明 AbstractBufferedImageOp()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Objectclone()BufferedImagecreateCompatibleDestImage(BufferedImage src, ColorModel dstCM)Rectangle2DgetBounds2D(BufferedImage src)Point2DgetPoint2D(Point2D srcPt, Point2D dstPt)RenderingHintsgetRenderingHints()int[]getRGB(BufferedImage image, int x, int y, int width, int height, int[] pixels)A convenience method for getting ARGB pixels from an image.voidsetRGB(BufferedImage image, int x, int y, int width, int height, int[] pixels)A convenience method for setting ARGB pixels in an image.-
从类继承的方法 java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 java.awt.image.BufferedImageOp
filter
-
-
-
-
方法详细资料
-
createCompatibleDestImage
public BufferedImage createCompatibleDestImage(BufferedImage src, ColorModel dstCM)
- 指定者:
createCompatibleDestImage在接口中BufferedImageOp
-
getBounds2D
public Rectangle2D getBounds2D(BufferedImage src)
- 指定者:
getBounds2D在接口中BufferedImageOp
-
getPoint2D
public Point2D getPoint2D(Point2D srcPt, Point2D dstPt)
- 指定者:
getPoint2D在接口中BufferedImageOp
-
getRenderingHints
public RenderingHints getRenderingHints()
- 指定者:
getRenderingHints在接口中BufferedImageOp
-
getRGB
public int[] getRGB(BufferedImage image, int x, int y, int width, int height, int[] pixels)
A convenience method for getting ARGB pixels from an image. This tries to avoid the performance penalty of BufferedImage.getRGB unmanaging the image.- 参数:
image- a BufferedImage objectx- the left edge of the pixel blocky- the right edge of the pixel blockwidth- the width of the pixel arryheight- the height of the pixel arrypixels- the array to hold the returned pixels. May be null.- 返回:
- the pixels
- 另请参阅:
setRGB(java.awt.image.BufferedImage, int, int, int, int, int[])
-
setRGB
public void setRGB(BufferedImage image, int x, int y, int width, int height, int[] pixels)
A convenience method for setting ARGB pixels in an image. This tries to avoid the performance penalty of BufferedImage.setRGB unmanaging the image.- 参数:
image- a BufferedImage objectx- the left edge of the pixel blocky- the right edge of the pixel blockwidth- the width of the pixel arryheight- the height of the pixel arrypixels- the array of pixels to set- 另请参阅:
getRGB(java.awt.image.BufferedImage, int, int, int, int, int[])
-
-