Page 1 of 1

copy performance results to a text file

Posted: 2010-08-16T12:54:19-07:00
by joseph_issa
Hi,
Is there a way to redirect the output of bench measurment to a text file
im using

conver -bench 2 image1.jpg image1.png > out.txt

but the Performance results are display on screen instead to out.txt

thanks,
joseph.

Re: copy performance results to a text file

Posted: 2010-08-16T13:35:30-07:00
by el_supremo
The output is probably going to the error output channel not standard output, so try:

Code: Select all

convert -bench 2 image1.jpg image1.png 2> out.txt
Pete