I am in a position where relatively low resolution images are provided (via API, higher resolution images are not available) and high resolution images .
I took a look at PIL and it just works great on everything ... Besides scaling images.
It has a general resizing algorithm :
- Nearest neighbor
- Bilinear
- Bicubic
- Smoothing
I would like to use Fractal Resizing (according to Jeff's post on the horror of coding ), but, alas, PIL does not have support for this kind of resizing.
Other Google searches do not provide alternative libraries for resizing a fractal image.
Is there such a thing or do I really need to fasten and write my own fractal resizing algorithm?
I am not an expert, but from my current point of view, this looks like a pretty steep learning curve :(
If there is no such library, maybe you have some advice where you can learn about fractal compression algorithms?
source share