Updating Coldfusion with the newest patch did not work. We are still seeing the “Missing Huffman” error in production. This occurs a few times a day. I’m now attempting to use the work-around posted in the Adobe Thread on the issue.
Below is my version of the work around:
newImageName = createUUID() & ".jpg"; // create a file object representing the path to the saved image outFile = createObject("java", "java.io.File").init( arguments.destination_path ); // extract the underlying BufferedImage from your CF image object bi = ImageGetBufferedImage(myImage); ImageIO = createObject("java", "javax.imageio.ImageIO"); // use ImageIO (instead of cfimage) to physically save the image to disk ImageIO.write( bi, "jpeg", outFile );
つhttp://kb2.adobe.com/cps/403/kb403411.html
Hi hoge updating with Adobe’s new patch is the first thing we did