Class PromotionRGB48
- java.lang.Object
-
- net.sourceforge.jiu.ops.Operation
-
- net.sourceforge.jiu.ops.ImageToImageOperation
-
- net.sourceforge.jiu.color.promotion.PromotionRGB48
-
public class PromotionRGB48 extends ImageToImageOperation
Converts several image types toRGB48Image
. Promotion is a lossless operation that will only lead to an output image that holds the same image in a way that demands more memory.If you give an image implementing RGB24Image to this operation, a WrongParameterException will be thrown. This operation could also return the input image, but this might lead to the wrong impression that a copy of the input was produced which can be modified without changing the original.
- Since:
- 0.12.0
- Author:
- Marco Schmidt
-
-
Constructor Summary
Constructors Constructor Description PromotionRGB48()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private void
prepare(PixelImage in)
void
process()
This method does the actual work of the operation.private void
process(BilevelImage in, RGB48Image out)
private void
process(Gray16Image in, RGB48Image out)
private void
process(Gray8Image in, RGB48Image out)
private void
process(Paletted8Image in, RGB48Image out)
private void
process(RGB24Image in, RGB48Image out)
-
Methods inherited from class net.sourceforge.jiu.ops.ImageToImageOperation
canInputAndOutputBeEqual, ensureImagesHaveSameResolution, ensureInputImageIsAvailable, ensureOutputImageResolution, getInputImage, getOutputImage, setCanInputAndOutputBeEqual, setInputImage, setOutputImage
-
Methods inherited from class net.sourceforge.jiu.ops.Operation
addProgressListener, addProgressListeners, getAbort, removeProgressListener, setAbort, setProgress, setProgress
-
-
-
-
Method Detail
-
prepare
private void prepare(PixelImage in) throws MissingParameterException, WrongParameterException
-
process
private void process(BilevelImage in, RGB48Image out)
-
process
private void process(Paletted8Image in, RGB48Image out)
-
process
private void process(Gray16Image in, RGB48Image out)
-
process
private void process(Gray8Image in, RGB48Image out)
-
process
private void process(RGB24Image in, RGB48Image out)
-
process
public void process() throws MissingParameterException, WrongParameterException
Description copied from class:Operation
This method does the actual work of the operation. It must be called after all parameters have been given to the operation object.- Overrides:
process
in classOperation
- Throws:
MissingParameterException
- if any mandatory parameter was not given to the operationWrongParameterException
- if at least one of the input parameters was not initialized appropriately (values out of the valid interval, etc.)
-
-