Class RawScale2x
- java.lang.Object
-
- com.realtime.crossfire.jxclient.faces.RawScale2x
-
public class RawScale2x extends java.lang.ObjectA simple implementation of the Scale2x algorithm for scaling raw image data.
-
-
Constructor Summary
Constructors Constructor Description RawScale2x(int @NotNull [] imageData, int dataWidth, int dataHeight)Creates a new scaler based on some raw data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int @NotNull []getScaledData()Gets the scale image data.
-
-
-
Constructor Detail
-
RawScale2x
public RawScale2x(int @NotNull [] imageData, int dataWidth, int dataHeight)Creates a new scaler based on some raw data. Right now it doesn't matter what order the channels in, just that its an int per pixel- Parameters:
imageData- the source image datadataWidth- the width of the source imagedataHeight- the height of the source image
-
-