<cfset algorithms="sinc,bessel,lanczos,mitchell,catrom">
<cfset algorithms="#algorithms#,cubic,quadratic,gaussian,blackman">
<cfset algorithms="#algorithms#,hamming,hanning,hermite,triangle,box,point">
<!--- trying to keep line length down so they fit well in documentation --->
<table>
<tr>
<cfoutput>
<cfloop index="i" list="#algorithms#">
<cfx_imagecr3 load="#expandpath('../examples/example.jpg')#" save="#expandpath('./resample-'&i&'.jpg')#" resample="#i#" resize="180x180">
<td>
<img src="#imagecr.filename#"><br>
#i#
</td>
</cfloop>
</cfoutput>
</tr>
</table>