I have been having problems with toBase64() for awhile. I am hoping someone can tell me why CF toBase64() seems to lost something i.e. in my example it reduces the quality of an image.

I have a solution (see last code example below), but I hate not understanding why and would love to solve this is CF.

If anyone would be so kind to run the code below, you would then see that after toBase64 conversion the image quality is bad. Nothing major, but it does not look as good after the encoding. If you have never noticed, then try it, you will see what I mean.

Does anyone know why, or how to solve this in CF?

<!--- EXAMPLE 1 --->

<!--- GET IMAGE - --->
<cfset image = ImageNew("test.png")>
<!--- BEFORE GOOD--->
<cfimage action="writeToBrowser" source="#image#" >
 <cfset image = toBinary(toBase64(image)) />
 <!--- AFTER --->
<cfimage action="writeToBrowser" source="#image#" >

<!--- Example 2 --->
<cfset image = ImageNew("test.png")>
<cfset FileWrite(expandPath('./converted.image'),toBinary(toBase64(image))) />
<!--- without any cfimage processing, the outputted file is a JPEG --->


My solution was to use a java add-on and everything seemed ok but for reasons I won't go into here not something I can do live.

image = createObject("java","it.sauronsoftware.base64.Base64").encode(image);
 toBinary(image );

Sample image output of code above can be found here: http://i56.tinypic.com/29fwiq.png First is before toBase64 second is after, you can see the image has lost a bit of quality after toBase64 function on the second output.

Update: As pointed out by Peter, the issue seems to be with the automatic output/conversion code within the ImageObject to provide the binary output for the toBase64 function to encode.

Update I have submitted this as a bug in CF 9.0.1, please vote for bug 3177303 https://bugbase.adobe.com/index.cfm?event=bug&id=3177303

link|improve this question

See examples outputs here: i56.tinypic.com/29fwiq.png PS as I pointed out to Shawn below, this is not related to "quality" attribute and I only used cfimage in my example for demonstration. The issue seems to be with CF's implementation of toBase64. – Spark Nov 8 '11 at 16:14
1  
This makes no sense, but you're right that the bug is in the toBase64 function - i.e. toBase64(ImageObject) results in a JPEG file, even when the original was a PNG. This should be reported at cfbugs.adobe.com – Peter Boughton Nov 8 '11 at 18:18
I've added another example that shows this isn't related to cfimage (although the default format for that is PNG anyway). – Peter Boughton Nov 8 '11 at 18:22
1  
Bah, I can't re-word my initial comment here - the bug likely isn't in toBase64 itself, but in the automatic output/conversion code within the ImageObject to provide the binary output for the toBase64 function to encode. As Henry's answer shows, using imageGetBlob to correctly extract the data first removes the problem. – Peter Boughton Nov 8 '11 at 18:32
1  
Maybe it's a good idea to file this as a bug or enhancement and have Adobe changes the current behaviour in future version, since most ppl who want to use toBase64(image) wants the actual blob. – Henry Nov 8 '11 at 18:44
show 3 more comments
feedback

2 Answers

up vote 3 down vote accepted

use toBase64(imageGetBlob(myImg))

see: http://blog.dkferguson.com/index.cfm/2010/4/27/All-your-base64-are-not-equal

link|improve this answer
2  
This works for my tests - seems like ImageGetBlob correctly extracts the PNG data, so toBase64 is then converting the correct data. – Peter Boughton Nov 8 '11 at 18:29
great, pls mark this as the correct answer. – Henry Nov 8 '11 at 18:30
Not my question. :P But yes, I assume Spark will see this and do that. – Peter Boughton Nov 8 '11 at 18:32
@PeterBoughton oh right. :) lol. – Henry Nov 8 '11 at 19:26
1  
You may use fileReadBinary() as outlined at the url posted in the answer, if imageNew() is still degrading your PNG somehow. – Henry Nov 8 '11 at 23:23
show 3 more comments
feedback

I see no one has mentioned the imageWriteBase64() function that has been in ColdFusion since version 8. I am not sure why.

http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-796b.html

I have been using it this week for the first time and it seems to be going great. I have not noticed any problems with quality loss.

<cfdirectory action="list" directory="#expandPath('./images')#" name="imageDir" type="file" />

<cfloop query="imageDir">
    <cfset ext = listLast(imageDir.name, ".") />
    <cfset name = imageDir.name />
    <cfset imagePath = imageDir.directory & "/" & name />

    <cfset imageFile = imageNew(imagePath) />

    <cfset imageWriteBase64(imageFile,"#expandPath('./base64')#/#name#.txt",ext, true) />   
</cfloop>
link|improve this answer
1  
I guess the reason is because usually they want to have the base64 string in a variable so that they can embed in data: or persist to DB. Although you can write it and read it back, maybe even to ram:// for CF9, it's just more hoops to jump through compare to toBase64(imageGetBlob(myImg)) – Henry Nov 9 '11 at 19:15
Yes, I need it to be a base64 string to stream. I could write to to ram but cannot afford server resources. Would be interesting to see tho if you displayed a jpg using Jason's example if it would actually give the same results! I didn't even noticed until it was pointed out to me on a high res display! I did some searching a while back and found an old Cf bug that 'could' be related to this issue, tho now it seems more like the object cf creates than the 64 conversion: webmasterkb.com/Uwe/Forum.aspx/coldfusion-db/4949/… – Spark Nov 10 '11 at 10:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.