public class DecompressImage
{
public static void main(String[] args) throws Exception
{
String file1 = args[0];
String file2 = args[1];
ImageReader reader = new ImageReader();
reader.SetFileName( file1 );
boolean ret = reader.Read();
if( !ret )
{
throw new Exception("Could not read: " + file1 );
}
ImageChangeTransferSyntax change = new ImageChangeTransferSyntax();
change.SetTransferSyntax( new TransferSyntax(TransferSyntax.TSType.ImplicitVRLittleEndian) );
change.SetInput( reader.GetImage() );
if( !change.Change() )
{
throw new Exception("Could not change: " + file1 );
}
Image out = change.GetOutput();
System.out.println( out.toString() );
FileMetaInformation.SetSourceApplicationEntityTitle( "Just For Fun" );
ImageWriter writer = new ImageWriter();
writer.SetFileName( file2 );
writer.SetFile( reader.GetFile() );
writer.SetImage( out );
ret = writer.Write();
if( !ret )
{
throw new Exception("Could not write: " + file2 );
}
}
}