File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11/*
2+ * The two pass scaling function is based on:
23 * Filtered Image Rescaling
34 * Based on Gems III
45 * - Schumacher general filtered image rescaling
1314 *
1415 * Initial sources code is avaibable in the Gems Source Code Packages:
1516 * http://www.acm.org/pubs/tog/GraphicsGems/GGemsIII.tar.gz
17+ *
1618 */
1719
1820/*
3436
3537*/
3638
39+ /*
40+ Additional functions are available for simple rotation or up/downscaling.
41+ downscaling using the fixed point implementations are usually much faster
42+ than the existing gdImageCopyResampled while having a similar or better
43+ quality.
44+
45+ For image rotations, the optimized versions have a lazy antialiasing for
46+ the edges of the images. For a much better antialiased result, the affine
47+ function is recommended.
48+ */
49+
3750/*
3851TODO:
3952 - Optimize pixel accesses and loops once we have continuous buffer
You can’t perform that action at this time.
0 commit comments