Trimming An Image Canvas With ImageUtils.cfc ColdFusion Image Component

Posted February 27, 2008 at 9:17 AM by Ben Nadel

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:

  • <!--- 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.




Reader Comments

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

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


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Feb 10, 2012 at 7:21 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
Update! Instead of $(eval(options.insertAfter)).after(data['insertData']); I now use: var ajaxNode = document.createElement('span'); var parent = $(eval(options.insertAfter))[0].parentNode; ... read »
Feb 10, 2012 at 6:18 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
encountered this same, what I consider, jQuery bug last week. I'm building a site in which I load some content via AJAX. This content contains Linkedin share button placeholders which Linkedin API ne ... read »
Feb 10, 2012 at 11:30 AM
Cross-Origin Resource Sharing (CORS) AJAX Requests Between jQuery And Node.js
After you understand the concepts here, this is an awesome cheatsheet for enabling CORS in just about anything http://enable-cors.org/ ... read »
JM
Feb 10, 2012 at 9:10 AM
My Safari Browser SQLite Database Hello World Example
@Amy, Here is a very good tutorial on how to use JOIN: http://www.sqltutorial.org/sqljoin-innerjoin.aspx ... read »
Feb 10, 2012 at 4:42 AM
Building A Twitter-Inspired RESTful API Architecture In ColdFusion
This is great, very useful Ben. I spotted a small typo in the api.cgm listing: <cfthrow type="Unauthroized" /> Cheers Stefan ... read »
Feb 9, 2012 at 10:35 PM
CFDirectory Filtering Uses Pipe Character For Multiple Filters (Thanks Steve Withington)
I was wondering if there would be a filter you could apply so that you got everything but what you included in the filter. As in show me all docs that are not a .pdf. ... read »
Feb 9, 2012 at 10:29 PM
Learning ColdFusion 9: Application-Specific Data Sources
@Ben, No offence, but if people were really wanting advanced features they would be using a platform like ASP.NET MVC. CFML is so structurally compromised as a tag-based scripting language that ... read »
Feb 9, 2012 at 10:03 PM
Subversion - Cleanup Failed To Process The Following Paths
@Leviaguirre, do you still have problems with this? ... read »