/*
* CVS identifier:
*
* $Id: ImgWriterPPM.java,v 1.16 2002/07/25 15:10:14 grosbois Exp $
*
* Class: ImgWriterRawPPM
*
* Description: Image writer for unsigned 8 bit data in
* PPM file format.
*
*
*
* COPYRIGHT:
*
* This software module was originally developed by Raphaël Grosbois and
* Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL); Joel
* Askelöf (Ericsson Radio Systems AB); and Bertrand Berthelot, David
* Bouchard, Félix Henry, Gerard Mozelle and Patrice Onno (Canon Research
* Centre France S.A) in the course of development of the JPEG2000
* standard as specified by ISO/IEC 15444 (JPEG 2000 Standard). This
* software module is an implementation of a part of the JPEG 2000
* Standard. Swiss Federal Institute of Technology-EPFL, Ericsson Radio
* Systems AB and Canon Research Centre France S.A (collectively JJ2000
* Partners) agree not to assert against ISO/IEC and users of the JPEG
* 2000 Standard (Users) any of their rights under the copyright, not
* including other intellectual property rights, for this software module
* with respect to the usage by ISO/IEC and Users of this software module
* or modifications thereof for use in hardware or software products
* claiming conformance to the JPEG 2000 Standard. Those intending to use
* this software module in hardware or software products are advised that
* their use may infringe existing patents. The original developers of
* this software module, JJ2000 Partners and ISO/IEC assume no liability
* for use of this software module or modifications thereof. No license
* or right to this software module is granted for non JPEG 2000 Standard
* conforming products. JJ2000 Partners have full right to use this
* software module for his/her own purpose, assign or donate this
* software module to any third party and to inhibit third parties from
* using this software module for non JPEG 2000 Standard conforming
* products. This copyright notice must be included in all copies or
* derivative works of this software module.
*
* Copyright (c) 1999/2000 JJ2000 Partners.
* */
using System;
using CSJ2K.j2k.image;
using CSJ2K.j2k.util;
using CSJ2K.j2k.io;
namespace CSJ2K.j2k.image.output
{
/// This class writes 3 components from an image in 8 bit unsigned data to a
/// binary PPM file.
///
/// The size of the image that is written is the size of the source
/// image. No component subsampling is allowed in any of the components that
/// are written to the file.
///
///
Before writing, all coefficients are inversly level-shifted and then
/// "saturated" (they are limited * to the nominal dynamic range).
///
/// Ex: if the nominal range is 0-255, the following algorithm is
/// applied:
///
/// if coeff<0, output=0
///
/// if coeff>255, output=255
///
/// else output=coeff
///
/// The write() methods of an object of this class may not be called
/// concurrently from different threads.
///
///
NOTE: This class is not thread safe, for reasons of internal buffering.
///
///
public class ImgWriterPPM:ImgWriter
{
/// Value used to inverse level shift. One for each component
private int[] levShift = new int[3];
/// Where to write the data
//UPGRADE_TODO: Class 'java.io.RandomAccessFile' was converted to 'System.IO.FileStream' which has a different behavior. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1073_javaioRandomAccessFile'"
private System.IO.FileStream out_Renamed;
/// The array of indexes of the components from where to get the data
private int[] cps = new int[3];
/// The array of the number of fractional bits in the components of the
/// source data
///
private int[] fb = new int[3];
/// A DataBlk, just used to avoid allocating a new one each time
/// it is needed
///
private DataBlkInt db = new DataBlkInt();
/// The offset of the raw pixel data in the PPM file
private int offset;
/// The line buffer.
// This makes the class not thrad safe
// (but it is not the only one making it so)
private byte[] buf;
/// Creates a new writer to the specified File object, to write data from
/// the specified component.
///
/// The three components that will be written as R, G and B must be
/// specified through the b1, b2 and b3 arguments.
///
///
/// The file where to write the data
///
///
/// The source from where to get the image data to write.
///
///
/// The index of the first component from where to get the data,
/// that will be written as the red channel.
///
///
/// The index of the second component from where to get the data,
/// that will be written as the green channel.
///
///
/// The index of the third component from where to get the data,
/// that will be written as the green channel.
///
///
///
///
///
public ImgWriterPPM(System.IO.FileInfo out_Renamed, BlkImgDataSrc imgSrc, int n1, int n2, int n3)
{
// Check that imgSrc is of the correct type
// Check that the component index is valid
if ((n1 < 0) || (n1 >= imgSrc.NumComps) || (n2 < 0) || (n2 >= imgSrc.NumComps) || (n3 < 0) || (n3 >= imgSrc.NumComps) || (imgSrc.getNomRangeBits(n1) > 8) || (imgSrc.getNomRangeBits(n2) > 8) || (imgSrc.getNomRangeBits(n3) > 8))
{
throw new System.ArgumentException("Invalid component indexes");
}
// Initialize
w = imgSrc.getCompImgWidth(n1);
h = imgSrc.getCompImgHeight(n1);
// Check that all components have same width and height
if (w != imgSrc.getCompImgWidth(n2) || w != imgSrc.getCompImgWidth(n3) || h != imgSrc.getCompImgHeight(n2) || h != imgSrc.getCompImgHeight(n3))
{
throw new System.ArgumentException("All components must have the" + " same dimensions and no" + " subsampling");
}
w = imgSrc.ImgWidth;
h = imgSrc.ImgHeight;
// Continue initialization
bool tmpBool;
if (System.IO.File.Exists(out_Renamed.FullName))
tmpBool = true;
else
tmpBool = System.IO.Directory.Exists(out_Renamed.FullName);
bool tmpBool2;
if (System.IO.File.Exists(out_Renamed.FullName))
{
System.IO.File.Delete(out_Renamed.FullName);
tmpBool2 = true;
}
else if (System.IO.Directory.Exists(out_Renamed.FullName))
{
System.IO.Directory.Delete(out_Renamed.FullName);
tmpBool2 = true;
}
else
tmpBool2 = false;
if (tmpBool && !tmpBool2)
{
throw new System.IO.IOException("Could not reset file");
}
this.out_Renamed = SupportClass.RandomAccessFileSupport.CreateRandomAccessFile(out_Renamed, "rw");
src = imgSrc;
cps[0] = n1;
cps[1] = n2;
cps[2] = n3;
fb[0] = imgSrc.getFixedPoint(n1);
fb[1] = imgSrc.getFixedPoint(n2);
fb[2] = imgSrc.getFixedPoint(n3);
levShift[0] = 1 << (imgSrc.getNomRangeBits(n1) - 1);
levShift[1] = 1 << (imgSrc.getNomRangeBits(n2) - 1);
levShift[2] = 1 << (imgSrc.getNomRangeBits(n3) - 1);
writeHeaderInfo();
}
/// Creates a new writer to the specified file, to write data from the
/// specified component.
///
/// The three components that will be written as R, G and B must be
/// specified through the b1, b2 and b3 arguments.
///
///
/// The name of the file where to write the data
///
///
/// The source from where to get the image data to write.
///
///
/// The index of the first component from where to get the data,
/// that will be written as the red channel.
///
///
/// The index of the second component from where to get the data,
/// that will be written as the green channel.
///
///
/// The index of the third component from where to get the data,
/// that will be written as the green channel.
///
///
///
///
///
public ImgWriterPPM(System.String fname, BlkImgDataSrc imgSrc, int n1, int n2, int n3):this(new System.IO.FileInfo(fname), imgSrc, n1, n2, n3)
{
}
/// Closes the underlying file or netwrok connection to where the data is
/// written. Any call to other methods of the class become illegal after a
/// call to this one.
///
///
/// If an I/O error occurs.
///
///
public override void close()
{
int i;
// Finish writing the file, writing 0s at the end if the data at end
// has not been written.
if (out_Renamed.Length != 3 * w * h + offset)
{
// Goto end of file
out_Renamed.Seek(out_Renamed.Length, System.IO.SeekOrigin.Begin);
// Fill with 0s n all the components
for (i = 3 * w * h + offset - (int) out_Renamed.Length; i > 0; i--)
{
out_Renamed.WriteByte((System.Byte) 0);
}
}
out_Renamed.Close();
src = null;
out_Renamed = null;
db = null;
}
/// Writes all buffered data to the file or resource.
///
///
/// If an I/O error occurs.
///
///
public override void flush()
{
// No flush needed here since we are using a RandomAccessFile Get rid
// of line buffer (is this a good choice?)
buf = null;
}
/// Writes the data of the specified area to the file, coordinates are
/// relative to the current tile of the source. Before writing, the
/// coefficients are limited to the nominal range.
///
/// This method may not be called concurrently from different
/// threads.
///
/// If the data returned from the BlkImgDataSrc source is progressive,
/// then it is requested over and over until it is not progressive
/// anymore.
///
///
/// The horizontal coordinate of the upper-left corner of the
/// area to write, relative to the current tile.
///
///
/// The vertical coordinate of the upper-left corner of the area
/// to write, relative to the current tile.
///
///
/// The width of the area to write.
///
///
/// The height of the area to write.
///
///
/// If an I/O error occurs.
///
///
public override void write(int ulx, int uly, int w, int h)
{
int k, j, i, c;
// In local variables for faster access
int fracbits;
// variables used during coeff saturation
int shift, tmp, maxVal;
int tOffx, tOffy; // Active tile offset in the X and Y direction
// Active tiles in all components have same offset since they are at
// same resolution (PPM does not support anything else)
//UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
tOffx = src.getCompULX(cps[0]) - (int) System.Math.Ceiling(src.ImgULX / (double) src.getCompSubsX(cps[0]));
//UPGRADE_WARNING: Data types in Visual C# might be different. Verify the accuracy of narrowing conversions. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1042'"
tOffy = src.getCompULY(cps[0]) - (int) System.Math.Ceiling(src.ImgULY / (double) src.getCompSubsY(cps[0]));
// Check the array size
if (db.data_array != null && db.data_array.Length < w)
{
// A new one will be allocated by getInternCompData()
db.data_array = null;
}
// Check the line buffer
if (buf == null || buf.Length < 3 * w)
{
buf = new byte[3 * w];
}
// Write the data to the file
// Write line by line
for (i = 0; i < h; i++)
{
// Write into buffer first loop over the three components and
// write for each
for (c = 0; c < 3; c++)
{
maxVal = (1 << src.getNomRangeBits(cps[c])) - 1;
shift = levShift[c];
// Initialize db
db.ulx = ulx;
db.uly = uly + i;
db.w = w;
db.h = 1;
// Request the data and make sure it is not progressive
do
{
db = (DataBlkInt) src.getInternCompData(db, cps[c]);
}
while (db.progressive);
// Get the fracbits value
fracbits = fb[c];
// Write all bytes in the line
if (fracbits == 0)
{
for (k = db.offset + w - 1, j = 3 * w - 1 + c - 2; j >= 0; k--)
{
tmp = db.data_array[k] + shift;
buf[j] = (byte) ((tmp < 0)?0:((tmp > maxVal)?maxVal:tmp));
j -= 3;
}
}
else
{
for (k = db.offset + w - 1, j = 3 * w - 1 + c - 2; j >= 0; k--)
{
tmp = (SupportClass.URShift(db.data_array[k], fracbits)) + shift;
buf[j] = (byte) ((tmp < 0)?0:((tmp > maxVal)?maxVal:tmp));
j -= 3;
}
}
}
// Write buffer into file
out_Renamed.Seek(offset + 3 * (this.w * (uly + tOffy + i) + ulx + tOffx), System.IO.SeekOrigin.Begin);
out_Renamed.Write(buf, 0, 3 * w);
}
}
/// Writes the source's current tile to the output. The requests of data
/// issued to the source BlkImgDataSrc object are done by strips, in order
/// to reduce memory usage.
///
/// If the data returned from the BlkImgDataSrc source is progressive,
/// then it is requested over and over until it is not progressive any
/// more.
///
///
/// If an I/O error occurs.
///
///
public override void write()
{
int i;
int tIdx = src.TileIdx;
int tw = src.getTileCompWidth(tIdx, 0); // Tile width
int th = src.getTileCompHeight(tIdx, 0); // Tile height
// Write in strips
for (i = 0; i < th; i += DEF_STRIP_HEIGHT)
{
write(0, i, tw, ((th - i) < DEF_STRIP_HEIGHT)?th - i:DEF_STRIP_HEIGHT);
}
}
/// Writes the header info of the PPM file :
///
/// P6
///
/// width height
///
/// 255
///
///
/// If there is an I/O Error
///
///
private void writeHeaderInfo()
{
byte[] byteVals;
int i;
System.String val;
// write 'P6' to file
out_Renamed.Seek(0, System.IO.SeekOrigin.Begin);
out_Renamed.WriteByte((System.Byte) 80);
out_Renamed.WriteByte((System.Byte) 54);
out_Renamed.WriteByte((System.Byte) 10); // new line
offset = 3;
// Write width in ASCII
val = System.Convert.ToString(w);
byteVals = System.Text.ASCIIEncoding.ASCII.GetBytes(val);
for (i = 0; i < byteVals.Length; i++)
{
out_Renamed.WriteByte((byte) byteVals[i]);
offset++;
}
out_Renamed.WriteByte((System.Byte) 32); // blank
offset++;
// Write height in ASCII
val = System.Convert.ToString(h);
byteVals = System.Text.ASCIIEncoding.ASCII.GetBytes(val);
for (i = 0; i < byteVals.Length; i++)
{
out_Renamed.WriteByte((byte) byteVals[i]);
offset++;
}
out_Renamed.WriteByte((System.Byte) 10); // newline
out_Renamed.WriteByte((System.Byte) 50); // '2'
out_Renamed.WriteByte((System.Byte) 53); // '5'
out_Renamed.WriteByte((System.Byte) 53); // '5'
out_Renamed.WriteByte((System.Byte) 10); // newline
offset += 5;
}
/// Returns a string of information about the object, more than 1 line
/// long. The information string includes information from the underlying
/// RandomAccessFile (its toString() method is called in turn).
///
///
/// A string of information about the object.
///
///
public override System.String ToString()
{
//UPGRADE_TODO: The equivalent in .NET for method 'java.lang.Object.toString' may return a different value. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1043'"
return "ImgWriterPPM: WxH = " + w + "x" + h + ", Components = " + cps[0] + "," + cps[1] + "," + cps[2] + "\nUnderlying RandomAccessFile:\n" + out_Renamed.ToString();
}
}
}