| By Greg Bell | Article Rating: |
|
| February 5, 2002 12:00 AM EST | Reads: |
16,812 |
Many of today's Web pages take too long for users to download. We've all landed on a page, stared impatiently at a blank screen for a minute or two, and become so frustrated that we found another activity to occupy our time.
After responding to the 25 e-mails left minimized on the desktop, we check the page again only to experience a very large image struggling to open before a page times out.
We all know there's a correlation between page load time and page size: an increase in page size means an increase in page load time. Unfortunately, users don't increase the time they spend waiting on your site. Several studies show that most users won't wait longer than 20 seconds for a page to load before leaving the site. Keep the page size less than 50KB in order to keep a user interested in your site.
Even though we know a smaller page size will retain more users, we often come across images larger than 200KB on our own sites. The problem stems from images being posted to the site either directly or through a content-providing template, unknown to the Web administrators. If the latter case is true, you may be able to use a custom tag called CFXImage to control image size and format.
Introducing CFXImage
CFXImage is a DLL that runs only on a Windows 32-bit operating system. The tag uses Microsoft Foundation Classes as a shared library, so "mfc42.dll" and "msvcrt.dll" need to be located in the system path. CFXImage is available for free at www.gafware.com.
Here are some things the tag can do through the actions invoked by the ACTION attribute as taken from the CFXImage documentation:
The tag also supports many file types:
How I Used CFXImage
I recently completed an application that allows a Motorola Computer Group Embedded Connections Partner to upload a company logo and other company information (see Figure 1). Even though I provided guidelines for submission (including image size and type), I found that many users submitted incorrect image sizes and formats, creating an oversized and unattractive Web page.
After weeks of painstakingly fixing the images, I found a solution using CFXImage. CFXImage provides the functionality to resize and convert image formats as well as basically manipulate almost any image to your liking.
Implementing CFXImage into my code was as painless as installing the custom tag on a ColdFusion Server. I first call the custom tag to read all the file attributes of the uploaded file through the READ action:
<CFIF #UploadedFile# NEQ ''>The READ action will get many image attributes such as height, width, type, and size.<CFX_Image FILE="#UploadedFile#" ACTION="READ">
Next, in Listing 1 I check if the image is already in GIF format. I also check if the image width is greater than 300 pixels. If both cases are true, the image is resized to a width of 300 pixels through the RESIZE action. If an image is the correct size and format, it's copied to the directory through the COPY action.
To produce a sharper 8-bit image, set the BITCOUNT to 24. This allows the image to be proportionately resized back to 8 bits before it's saved back to a GIF format. Using this method, an 8-bit image will have increased colors resulting in a sharper output around the edges. However, this method doesn't work well with transparent images.
Last, in Listing 2 a size check is performed on an image in the wrong format. The image is then converted into GIF format through the CONVERT action and resized through the RESIZE action if it's too large.
Notice how easy the syntax is to convert an image into another format. Basically, it's a matter of making the file extension in the OUTPUT path the desired format and specifying an image type. You can use several different formats, such as GIF, JPEG, BMP, TIFF, and PNG.
That's it. The images on Motorola Computer Group's Partner Web pages are now automatically controlled upon upload. As a result, the pages download faster and look cleaner, which can mean increased traffic throughout the site. Customers can spend more time viewing images on your site rather than checking their e-mail while your graphics load. The difficult task of resizing and converting files is just the tip of the iceberg for CFXImage. I encourage you to explore the options in this custom tag and see what it has to offer your site.
Published February 5, 2002 Reads 16,812
Copyright © 2002 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Greg Bell
Greg Bell is currently a web developer for the Motorola Computer Group. He has a BS in Accounting and Computer Information Systems and is currently working on an MBA from the University of Phoenix. He can be reached at greg.bell@motorola.com.
- Adobe’s Aiming ColdFusion at Multiple Clouds
- Cloud Computing Journal: Adobe to Deliver ColdFusion in the Cloud
- Adobe Reader Sued
- Adobe May Cooperate with Apple to Transplant Flash Player to iPhone
- Adobe Flex Developer Earns $100K in New York City
- Adobe LiveCycle Enterprise Suite 2 for Cloud Computing
- Adobe Cans Another 9% of its Workforce
- Adobe Betas Target RIAs and Cloud Computing
- Adobe MAX 2009 Online
- Thinking of Flex in London
- Moyea DVD4Web Converter V2.0 Converts DVD to FLV Fast and Synchronously with Watermarks
- Adobe & Salesforce Cut Cloud Deal
- Adobe’s Aiming ColdFusion at Multiple Clouds
- Eval JavaScript in a Global Context
- Fig Leaf Software to Exhibit at Government IT Conference & Expo
- Is Microsoft as Free as Open Source?
- Cloud Computing Journal: Adobe to Deliver ColdFusion in the Cloud
- Adobe Reader Sued
- The Planet Named “Bronze Sponsor” of Cloud Computing Expo
- Microsoft Expression Web Has Got Game
- Adobe May Cooperate with Apple to Transplant Flash Player to iPhone
- Bruce Chizen Joins Voyager Capital as Venture Partner
- My Top Seven Wishes From Adobe MAX 2009
- Adobe Flex Developer Earns $100K in New York City
- The Next Programming Models, RIAs and Composite Applications
- Where Are RIA Technologies Headed in 2008?
- Constructing an Application with Flash Forms from the Ground Up
- AJAX World RIA Conference & Expo Kicks Off in New York City
- CFEclipse: The Developer's IDE, Eclipse For ColdFusion
- Personal Branding Checklist
- Adobe Flex 2: Advanced DataGrid
- Has the Technology Bounceback Begun?
- Building a Zip Code Proximity Search with ColdFusion
- i-Technology Viewpoint: We Need Not More Frameworks, But Better Programmers
- The Asynchronous CFML Gateway
- Web Services Using ColdFusion and Apache CXF





































