*/
public boolean convert( String name, InputStream is, OutputStream os, int width, int height )
{
try {
PNGTranscoder trans = new PNGTranscoder();
trans.addTranscodingHint( PNGTranscoder.KEY_WIDTH, new Float( width ));
trans.addTranscodingHint( PNGTranscoder.KEY_HEIGHT, new Float( height ));
TranscoderInput input = new TranscoderInput( is );
TranscoderOutput output = new TranscoderOutput( os );
trans.transcode( input, output );
os.flush();