copy performance results to a text file

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
joseph_issa

copy performance results to a text file

Post 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.
el_supremo
Posts: 1015
Joined: 2005-03-21T21:16:57-07:00

Re: copy performance results to a text file

Post 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
Sorry, my ISP shutdown all personal webspace so my MagickWand Examples in C is offline.
See my message in this topic for a link to a zip of all the files.
Post Reply