File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 58
58
* @stability: Stable
59
59
* @include: vips/vips.h
60
60
*
61
- * There are three types of operation in this section .
61
+ * These operations build on each other in a set of layers .
62
62
*
63
63
* First, vips_affine() applies an affine transform to an image. This is any
64
64
* sort of 2D transform which preserves straight lines; so any combination of
79
79
* vips_affine() and others to implement a general, high-quality image
80
80
* resizer.
81
81
*
82
- * Finally, vips_mapim() can apply arbitrary 2D image transforms to an image.
82
+ * Finally, vips_thumbnail() combines load and resize in one operation, and adds
83
+ * colour management and correct handling of alpha transparency. Because load
84
+ * and resize happen together, it can exploit tricks like JPEG and TIFF
85
+ * shrink-on-load, giving a (potentially) huge speedup. vips_thumbnail_image()
86
+ * is only there for emergencies, don't use it unless you really have to.
87
+ *
88
+ * As a separate thing, `vips_mapim() can apply arbitrary 2D image transforms
89
+ * to an image.
83
90
*/
84
91
85
92
/**
You can’t perform that action at this time.
0 commit comments