What image processing Library should I use

Posted by Swippen on Stack Overflow See other posts from Stack Overflow or by Swippen
Published on 2011-09-07T07:58:38Z Indexed on 2012/06/02 4:40 UTC
Read the original article Hit count: 244

I have been reading What is the best image manipulation library? And tried a few libraries and are now looking for inputs on what is the best for our need. I will start by describing our current setting and problems.

We have a system that needs to resize and crop a large amount of images from big original images. We handle 50 000+ images every day on 2 powerfull servers. Today we use ImageGlue from WebSupergoo but we don't like it at all, it is slow and hangs the service now and then (Its in another unanswered stack overflow question). We have a threaded windows service that uses Microsoft ThreadPool to resize as much as possible on the 8 core machines.

I have tried AForge and it went very well it was loads faster and never crashed or anything. But I had problems with quality on a few images. This due to what algorithms I used ofc so can be tweaked. But want to widen our eyes to see if thats the right way to go.

so:

  • It needs to be c# .net and run in a windows service. (Since we wont change the rest of the service only image handling)
  • It needs to handle threaded environment well.
  • We have a great need of it being fast since today its too slow. But we also want good quality and small filesize since the images are later displayed on webpage with loads of visitors and needs good quality.

So we have a lot of demands on ability to get god quality at a fast pace, and also secondary keep filesizes lowered even if that can be adjusted with compression a bit.

Any comments or suggestions on what library to use?

© Stack Overflow or respective owner

Related posts about image

Related posts about image-processing