Batch Process Images

I need to convert several hundred images every day in a certain way.

I need a better free C # tool or piece of code that supports batch watermarking, image resizing and can be automated (old configuration can be reused).

What tool do you suggest?

+1


source to share


6 answers


Dave Viner's scripting.com fame was published about his success with ImageMagick . I think it's free.



+1


source


IrfanView has pretty decent batch processing / conversion of images.



+1


source


If you want to flip your own solution (and I guess why you marked the question with "C #") the GDI + stuff built into the framework (System.Drawing and its children) is quite powerful, more than enough to accomplish that , what you need. The advantage of this approach is that you can define your own transformations and en-mass them if you choose to code it that way.

0


source


Check out the Netpbm collection . It contains over 300 tools and supports hundreds of graphic formats. You can easily experiment with the process you want to complete with the tools one by one and then link them together with the script. It's open source, so if you want the best performance, you can even package the code you are interested in together in a standalone program.

You usually work with netpbm by piping tools. So you have to use pamscale to scale the image and pamcomp to watermark the result. If the watermark is specific to each image, you can use pbmtext to create it.

0


source


There are many examples of how to do this kind of manipulation with C #, it is not very difficult.

Here are two articles from Joel Neubeck that resize and watermark an image.

http://www.codeproject.com/KB/GDI-plus/imageresize.aspx

http://www.codeproject.com/KB/GDI-plus/watermark.aspx

You can put them together and write a simple program to process all the images when you apply these operations.

0


source


See IMG Convert at http://www.abadev.com

0


source







All Articles