Textured Font
Properties
Functions
Return an instance of TextureOp which implements a convolution from the source texture to the destination texture with the ability removing the image noise of this texture.
Return an instance of TextureOp which implements a convolution from the source texture to the destination texture with the ability removing the image noise of this texture., and the kernel is a 3 * 3 matrix.
Return an instance of TextureOp which implements a convolution from the source texture to the destination texture. Convolution using a convolution kernel is a spatial operation that computes the output pixel from an input pixel by multiplying the kernel with the surround of the input pixel. This allows the output pixel to be affected by the immediate neighborhood in a way that can be mathematically specified with a kernel, and the kernel size is 3 * 3 by passing in a float array with the length of 9.
Return an instance of TextureOp which implements a convolution from the source texture to the destination texture provided a Gaussian blur effect for textures, and its convolve kernel conforms to the Gaussian distribution with sum of 1, and the kernel is a 3 * 3 matrix, and the length should be odd.
Return an instance of TextureOp which implements a convolution from the source texture to the destination texture provided a Gaussian blur effect for textures, and its convolve kernel conforms to the Gaussian distribution with sum of 1, and the kernel is a 3 * 3 matrix.
Get the texture.
Returns a Texture operation without any change. The matrix is:
Renders a Texture that is filtered with a BufferedImageOp. The rendering attributes applied to include the Clip, Transform and Composite attributes.
Calculate and return the correct rendering coordinate, which can make the texture's center coincides with the given point specified by its coordinates.
Calculate and return the correct rendering coordinate, which can make center of the rotated texture, the rotate degree is specified in parameters, coincides with the given point specified by its coordinates.
Returns a TextureOp that can be used to rotate the texture.