All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.fmj.media.codec.video.lossless.PNGDecoder Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package net.sf.fmj.media.codec.video.lossless;

import javax.media.*;

import net.sf.fmj.media.codec.video.*;
import net.sf.fmj.media.format.*;

/**
 * PNG decoder Codec.
 *
 * @author Ken Larson
 *
 */
public class PNGDecoder extends ImageIODecoder
{
    private final Format[] supportedInputFormats = new Format[] { new PNGFormat(), };

    public PNGDecoder()
    {
        super("PNG");
    }

    @Override
    public Format[] getSupportedInputFormats()
    {
        return supportedInputFormats;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy