Ahhhh. Thank you! That's what I needed to know! I'll be looking forward to seeing your article once it is released :-)
Paul --- In [email protected], "Andrew Trice" <[EMAIL PROTECTED]> wrote: > > In it's most simple form: this is all you need to do in CF. You don't > need to convert it. It comes over AMF as binary data. > > <cffunction name="save" access="remote" output="false" > returntype="void"> > <cfargument name="data" type="binary" required="true" /> > <cffile action="write" file="c:\temp\data.jpg" > output="#arguments.data#" /> > </cffunction> > > You only need to use "tobinary" if you are sending it as base64 encoded > data across a web service or http service. > > -Andy

