Learning ColdFusion 8: CFZip Part III - Reading Zip File Entries

<!---
	Read the mud_monster.jpg file directly into a
	ColdFusion binary data variable.
--->
<cfzip
	action="readbinary"
	file="#ExpandPath( './data.zip' )#"
	entrypath="images/mud_monster.jpg"
	variable="binImageData"
	/>
 
<!---
	Stream the binary image data directly to the
	browser as if it was an image on the web server.
--->
<cfcontent
	type="image/jpeg"
	variable="#binImageData#"
	/>

For Cut-and-Paste