PulpCore

Uses of Class
pulpcore.image.filter.Filter

Packages that use Filter
pulpcore.image.filter Provides classes for image filters. 
pulpcore.sprite Provides the Sprite class, the ImageSprite class, and a few Sprite-based widgets. 
 

Uses of Filter in pulpcore.image.filter
 

Subclasses of Filter in pulpcore.image.filter
 class Blur
          A blur filter.
 class ColorOverlay
          The ColorOverlay filter fills visible pixels of an input image with a color, optionally drawing the color over the existing input pixels if alpha is less than 255.
 class DropShadow
          A simple drop shadow.
 class FilterChain
           
 class Glow
          A Glow filter.
 class Grayscale
          A grayscale filter.
 class HSBAdjust
          A HSB adjust filter.
 class Identity
          A no-op filter: The output pixels are copied from the input.
 class MotionBlur
          The MotionBlur filter simulates the streaking of rapidly moving objects.
 class Negative
          A negative-image filter.
 class Reflection
          A Reflection filter.
 class Sepia
          A sepia tone filter.
 class Stroke
          A edge Stroke filter.
 class Superimpose
          The Superimpose filter allows to superimpose an image over a sprite.
 class Thermal
          A false-color filter that mocks a Thermal view filter.
 

Methods in pulpcore.image.filter that return Filter
 Filter Thermal.copy()
           
 Filter Superimpose.copy()
           
 Filter Stroke.copy()
           
 Filter Sepia.copy()
           
 Filter Reflection.copy()
           
 Filter Negative.copy()
           
 Filter MotionBlur.copy()
           
 Filter Identity.copy()
           
 Filter HSBAdjust.copy()
           
 Filter Grayscale.copy()
           
 Filter Glow.copy()
           
 Filter FilterChain.copy()
           
abstract  Filter Filter.copy()
          Creates a copy of the Filter for another Sprite to use.
 Filter DropShadow.copy()
           
 Filter ColorOverlay.copy()
           
 Filter Blur.copy()
           
 Filter FilterChain.get(int i)
           
 

Methods in pulpcore.image.filter with parameters of type Filter
 void FilterChain.add(Filter filter)
           
 void FilterChain.add(int i, Filter filter)
           
 void FilterChain.set(int i, Filter filter)
           
 

Constructors in pulpcore.image.filter with parameters of type Filter
FilterChain(Filter filter)
           
FilterChain(Filter[] filters)
           
FilterChain(Filter filter1, Filter filter2)
           
FilterChain(Filter filter1, Filter filter2, Filter filter3)
           
FilterChain(Filter filter1, Filter filter2, Filter filter3, Filter filter4)
           
 

Uses of Filter in pulpcore.sprite
 

Methods in pulpcore.sprite that return Filter
 Filter Sprite.getFilter()
          Gets the image filter for this Sprite, or null if there is no filter.
 

Methods in pulpcore.sprite with parameters of type Filter
 void Sprite.setFilter(Filter filter)
          Sets the image filter for this Sprite.
 


PulpCore

Copyright © 2007-2009 Interactive Pulp, LLC.