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

ncsa.hdf.hdflib.HDFSZIPCompInfo Maven / Gradle / Ivy

The newest version!
/****************************************************************************
 * NCSA HDF                                                                 *
 * National Comptational Science Alliance                                   *
 * University of Illinois at Urbana-Champaign                               *
 * 605 E. Springfield, Champaign IL 61820                                   *
 *                                                                          *
 * For conditions of distribution and use, see the accompanying             *
 * hdf-java/COPYING file.                                                   *
 *                                                                          *
 ****************************************************************************/

package ncsa.hdf.hdflib;

/**
 * 

* This class is a container for the parameters to the HDF * SZIP compression algorithm. *

* In this case, the only parameter is the ``level'' of deflation. *

* For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu */ public class HDFSZIPCompInfo extends HDFNewCompInfo { public int bits_per_pixel; public int options_mask; public int pixels; public int pixels_per_block; public int pixels_per_scanline; public HDFSZIPCompInfo() { ctype = HDFConstants.COMP_CODE_SZIP; } ; public HDFSZIPCompInfo( int bits_per_pixel_in, int options_mask_in, int pixels_in, int pixels_per_block_in, int pixels_per_scanline_in) { ctype = HDFConstants.COMP_CODE_SZIP; } ; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy