Trimming An Image Canvas With ImageUtils.cfc ColdFusion Image Component

Posted February 27, 2008 at 9:17 AM

Tags: ColdFusion

I'm not gonna bother posting the code here, since it's in the ImageUtils.cfc RIA Forge project, but I created two new methods for trimming a ColdFusion image canvas:

TrimCanvas( Image, BackgroundColor [, Tolerance ] )

This will take a ColdFusion image object and, given the background color, it will reduce the size of the canvas to the smallest possible rectangle without hurting any of the primary image data. You can pass in an optional tolerance value. The tolerance allows some flexibility when it comes to matching the current pixel color to the given background color. The tolerance is the allowable delta in any given color channel (0 to 255).

TrimCanvasSide( Image, Side, BackgroundColor [, Tolerance ] )

This will trim just the given side of the canvas. In reality, TrimCanvas() internally calls this method four times - once per side.

These are SLOW functions. This should not be something that is done on the fly, but rather something that is done to prepare a future-static image. That being said, let's take a look at some sample code:

 Launch code in new window » Download code as text file »

  • <!--- Create the image utils object. --->
  • <cfset objImageUtils = CreateObject(
  • "component",
  • "imageutilsroot.imageUtils"
  • ).Init()
  • />
  •  
  •  
  • <!--- Create a large, off-white canvas. --->
  • <cfset objImage = ImageNew(
  • "",
  • 300,
  • 300,
  • "argb",
  • "##F5F5F5"
  • ) />
  •  
  • <!--- Set the drawing color. --->
  • <cfset ImageSetDrawingColor(
  • objImage,
  • "##FF9900"
  • ) />
  •  
  • <!--- Draw a circle in the middle of the canvas. --->
  • <cfset ImageDrawOval(
  • objImage,
  • 100,
  • 100,
  • 100,
  • 100,
  • "yes"
  • ) />
  •  
  • <!--- Set up our font properties. --->
  • <cfset objFont = {
  • Size = "20",
  • Font = "Arial Black"
  • } />
  •  
  • <!--- Draw text. --->
  • <cfset ImageDrawText(
  • objImage,
  • "MY FIRST CIRCLE",
  • 45,
  • 250,
  • objFont
  • ) />
  •  
  •  
  • <p>
  • <!--- Write image to browser. --->
  • <cfimage
  • action="writetobrowser"
  • source="#objImage#"
  • />
  • </p>
  •  
  •  
  •  
  •  
  •  
  • <!--- Trim the canvas. --->
  • <cfset objImage = objImageUtils.TrimCanvas(
  • objImage,
  • "##F5F5F5"
  • ) />
  •  
  • <p>
  • <!--- Write image to browser. --->
  • <cfimage
  • action="writetobrowser"
  • source="#objImage#"
  • />
  • </p>

In this demo, we are creating a canvas with a centered circle and some text. Then we are outputting it. Then, we are trimming the canvas and outputting the smaller canvas. Running the above code, we get the following output:


 
 
 

 
Trimming ColdFusion Image Canvas - Before Trimming  
 
 
 

 
 
 

 
Trimming ColdFusion Image Canvas - After Trimming  
 
 
 

As you can see, the excess "background color" was trimmed away from our original image leaving the smallest possible canvas that contained all of the primary image data. Again, this is a very SLOW function. This demo took several seconds to run and the image that we are working on is rather small. This is not something you are going to want to run all the time. Hopefully, I can think of a better, faster way to do this.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page




Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Aug 17, 2009 at 2:38 PM // reply »
9 Comments

I haven't been able to get this method to work. I've posted an issue regarding it in Riaforge.


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »