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

src.gov.nasa.worldwind.formats.dds.DXTDecompressor Maven / Gradle / Ivy

/*
 * Copyright (C) 2012 United States Government as represented by the Administrator of the
 * National Aeronautics and Space Administration.
 * All Rights Reserved.
 */

package gov.nasa.worldwind.formats.dds;

import java.io.IOException;

/**
 * @author Lado Garakanidze
 * @version $Id: DXTDecompressor.java 1171 2013-02-11 21:45:02Z dcollins $
 */

public interface DXTDecompressor
{
    /**
     * Decompress DXT1, DXT3 and DXT3A encoded rasters
     *
     * @param buffer
     * @param width  must be a positive and power of two (4, 8, 16, 32, 64, 128, 512, etc )
     * @param height must be a positive and power of two (4, 8, 16, 32, 64, 128, 512, etc )
     * @return java.awt.image.BufferedImage instance
     * @throws IOException              if there is a problem while reading from buffer or decompression
     * @throws IllegalArgumentException if any input parameter is null or invalid
     */
    java.awt.image.BufferedImage decompress(java.nio.ByteBuffer buffer, int width, int height)
            throws IOException, IllegalArgumentException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy