Uses of Class
ca.cgjennings.graphics.filters.AbstractPixelwiseFilter
-
Packages that use AbstractPixelwiseFilter Package Description ca.cgjennings.apps.arkham.sheet ca.cgjennings.graphics.filters -
-
Uses of AbstractPixelwiseFilter in ca.cgjennings.apps.arkham.sheet
Subclasses of AbstractPixelwiseFilter in ca.cgjennings.apps.arkham.sheet Modifier and Type Class Description class
ShiftHReplaceSBFilter
This filter shifts the hue of each pixel by a fixed amount, sets the saturation to a fixed value, and scales the brightness. -
Uses of AbstractPixelwiseFilter in ca.cgjennings.graphics.filters
Subclasses of AbstractPixelwiseFilter in ca.cgjennings.graphics.filters Modifier and Type Class Description class
AbstractFunctionFilter
An abstract base class for filters that apply a transfer function to the red, green, and blue channels to produce a result.class
AbstractTintingFilter
An abstract base class forTintingFilter
s.class
AlphaInversionFilter
An image filter that inverts the alpha channel of a source image: transparent areas will become solid and vice-versa.class
AlphaStrengthenFilter
A filter that increases the overall opacity of an image.class
BrightnessContrastFilter
An image filter that adjusts the brightness and contrast of an image.class
ChannelFunctionFilter
A image filter that applies a function to each channel.class
ChannelSwapFilter
A filter that allows channels in the source image to be swapped around, inverted, or filled with constant values.class
ClearFilter
Sets every pixel in an image to a single ARGB value.class
CloneFilter
A filter that creates an identical copy of the source image.class
ColorOverlayFilter
Sets every pixel to a common RGB value without modifying the alpha channel.class
CompoundPixelwiseFilter
A filter that can apply multipleAbstractPixelwiseFilter
s in sequence.class
DarkMagicFilter
A filter which inverts the brightness each pixel without affecting the colour.class
GammaCorrectionFilter
Applies a gamma correction function to the source image.class
GreyscaleFilter
A filter that converts images to greyscale, completely desaturating the colours.class
InversionFilter
An image filter that inverts the pixel values of the source image, producing a negative image.class
ReplaceHueSaturationFilter
A tinting filter that replaces the hue and saturation of every pixel with fixed values, and scales the brightness.class
SubstitutionFilter
An image filter that replaces one ARGB value with another.class
TintFilter
A basic, general purpose card tinting filter.static class
TintFilter.ScaledTintFilter
ATintFilter
that scales its saturation and brightness.class
TintOverlayFilter
This filter changes the colour of every pixel to an HSB colour value, but leaves the alpha value untouched.Methods in ca.cgjennings.graphics.filters that return AbstractPixelwiseFilter Modifier and Type Method Description AbstractPixelwiseFilter
CompoundPixelwiseFilter. getFilter(int index)
Returns the filter at the specified index in the list of filters.AbstractPixelwiseFilter[]
CompoundPixelwiseFilter. getFilters()
Returns a copy of the filter list as an array.Methods in ca.cgjennings.graphics.filters with parameters of type AbstractPixelwiseFilter Modifier and Type Method Description void
CompoundPixelwiseFilter. appendFilter(AbstractPixelwiseFilter filter)
Appends a new filter to the current filter list, replacing the existing list.void
CompoundPixelwiseFilter. setFilters(AbstractPixelwiseFilter... filters)
Sets the filters to be applied by this compound filter.Constructors in ca.cgjennings.graphics.filters with parameters of type AbstractPixelwiseFilter Constructor Description CompoundPixelwiseFilter(AbstractPixelwiseFilter... filters)
Creates a new compound filter with the specified filter list.
-