Uses of Class
magick.MagickImage

Packages that use MagickImage
magick 
magick.util 
test 

Uses of MagickImage in magick
 

Constructors in magick with parameters of type MagickImage
MagickImage.MagickImage(MagickImage[] images)
          Construct a MagickImage that is made up of all the images in the specified array.
MagickProducer.MagickProducer(MagickImage image)
          Constructor.
 

Methods in magick that return MagickImage
MagickImageDrawInfo.getTile()
          Get the tile image from the DrawInfo.
MagickImageMagickImage.addNoiseImage(int noiseType)
          Adds random noise to the image.
MagickImageMagickImage.averageImages()
          The Average() method takes a set of images and averages them together.
MagickImageMagickImage.blurImage(double raduis, double sigma)
          Blurs an image.
MagickImageMagickImage.borderImage(Rectangle borderInfo)
          Surrounds the image with a border of the color defined by the border color member of the image structure.
MagickImage[]MagickImage.breakFrames()
          Destructively create array of image frames.
MagickImageMagickImage.charcoalImage(double raduis, double sigma)
          Creates a new image that is a copy of an existing one with the edges highlighted, producing a 'charcoal-drawing' effect.
MagickImageMagickImage.chopImage(Rectangle chopInfo)
          Creates a new image that is a subregion of the original.
MagickImageMagickImage.cloneImage(int columns, int rows, boolean clonePixels)
          Returns a copy of all fields of the input image.
MagickImageMagickImage.colorizeImage(String opacity, PixelPacket target)
          Colourises the image with a pen colour.
MagickImageMagickImage.convolveImage(int order, double[] kernel)
          Applies a general image convolution kernel to an image returns the results.
MagickImageMagickImage.cropImage(Rectangle chopInfo)
          Creates a new image that is a subregion of the original.
MagickImageMagickImage.despeckleImage()
          Creates a new image that is a copy of an existing one with the speckle noise minified.
MagickImageMagickImage.edgeImage(double raduis)
          Finds edges in an image.
MagickImageMagickImage.embossImage(double raduis, double sigma)
          Returns a grayscale image with a three-dimensional effect.
MagickImageMagickImage.enhanceImage()
          Applies a digital filter that improves the quality of a noisy image.
MagickImageMagickImage.flipImage()
          Creates a new image that reflects each scanline in the vertical direction.
MagickImageMagickImage.flopImage()
          Creates a new image that reflects each scanline in the horizontal direction
MagickImageMagickImage.gaussianBlurImage(double raduis, double sigma)
          Blurs the image using a gaussian operator.
MagickImageMagickImage.implodeImage(double amount)
          Implodes the image's pixels about the center.
MagickImageMagickImage.magnifyImage()
          Creates a new image that is a integral size greater than an existing one.
MagickImageMagickImage.medianFilterImage(double radius)
          Applies a digital filter that improves the quality of a noisy image.
MagickImageMagickImage.minifyImage()
          Creates a new image that is a integral size less than an existing one.
MagickImageMagickImage.montageImages(MontageInfo montageInfo)
          Create a montage of all the images in the list.
MagickImageMagickImage.oilPaintImage(double radius)
          Applies a special effect filter that simulates an oil painting.
MagickImageMagickImage.reduceNoiseImage(double radius)
          This operation attempts to reduce the 'noise' in the image.
MagickImageMagickImage.rollImage(int xOffset, int yOffset)
          Rolls an image vertically and horizontally.
MagickImageMagickImage.rotateImage(double degrees)
          Creates a new image that is a rotated copy of an existing one.
MagickImageMagickImage.sampleImage(int cols, int rows)
          Creates a new image that is a scaled size of an existing one using pixel sampling.
MagickImageMagickImage.scaleImage(int cols, int rows)
          Return a new image that is a scaled version of the original.
MagickImageMagickImage.sharpenImage(double raduis, double sigma)
          Creates a new image that is a copy of an existing one with the pixels sharpened.
MagickImageMagickImage.shearImage(double x_shear, double y_shear)
          Creates a new image that is a shear_image copy of an existing one.
MagickImageMagickImage.spreadImage(int radius)
          A special effects method that randomly displaces each pixel in a block defined by the radius parameter.
MagickImageMagickImage.swirlImage(double degress)
          Swirls the pixels about the center of the image, where degrees indicates the sweep of the arc through which each pixel is moved.
MagickImageMagickImage.unsharpMaskImage(double raduis, double sigma, double amount, double threshold)
          Creates a new image that is a copy of an existing one with the pixels sharpened using an "unsharp" masking technique.
MagickImageMagickImage.waveImage(double amplitude, double wavelength)
          Creates a "ripple" effect in the image by shifting the pixels vertically along a sine wave whose amplitude and wavelength is specified by the given parameters.
MagickImageMagickImage.zoomImage(int cols, int rows)
          Creates a new image that is a scaled size of an existing one.
 

Methods in magick with parameters of type MagickImage
voidDrawInfo.setTile(MagickImage image)
          Set the tile image in the DrawInfo.
booleanMagickImage.compositeImage(int compOp, MagickImage compImage, int xOff, int yOff)
          Composite the image supplied onto itself at the specified offsets.
voidMagickImage.textureImage(MagickImage image)
          Layers a texture onto the background of an image.
 

Uses of MagickImage in magick.util
 

Methods in magick.util with parameters of type MagickImage
voidMagickCanvas.setImage(MagickImage magickImage)
          Set the viewing image.
voidMagickViewer.setImage(MagickImage image)
          Sets the display image.
 

Uses of MagickImage in test
 

Constructors in test with parameters of type MagickImage
MagickWindow.MagickWindow(MagickImage image)
          Constructor.
 


JMagick