To create a text image by using the ImageDrawText function, you must specify the text string and the x and y coordinates for the location of the beginning of the text string. You can draw the text on an existing image or on a blank image, as the following examples show:
<!--- This example shows how to draw a text string on a blank image. ---> <cfset myImage=ImageNew("",200,100)> <cfset ImageDrawText(myImage, "Congratulations!",10,50)> <cfimage source="#myImage#" action="write" destination="myImage.png" overwrite="yes"> <img src="myImage.png"> <!--- This example shows how to draw a text string on an existing image. ---> <cfset myImage2=ImageNew("../cfdocs/images/artgallery/jeff01.jpg")> <cfset ImageDrawText(myImage2,"Congratulations!",10,50)> <cfimage source="#myImage2#" action="write" destination="myImage2.png" overwrite="yes"> <img src="myImage2.png">
In the previous examples, the text is displayed in the default system font and font size. To control the appearance of the text, you specify a collection of text attributes, as the following example shows:
<cfset attr = StructNew()> <cfset attr.style="bolditalic"> <cfset attr.size=20> <cfset attr.font="verdana"> <cfset attr.underline="yes">
To apply the text attributes to the text string, include the attribute collection name in the ImageDrawText definition. In the following examples, the "attr" text attribute collection applies the text string "Congratulations!":
... <cfset ImageDrawText(myImage,"Congratulations!",10,50,attr)>
To change the color of the text, use the ImageSetDrawingColor function. This function controls the color of all subsequent drawing objects on an image. In the following example, two lines of text, "Congratulations!" and "Gabriella", inherit the color magenta.
<!--- This example shows how to draw a text string on a blank image. ---> <cfset myImage=ImageNew("../cfdocs/images/artgallery/jeff01.jpg")> <cfset ImageSetDrawingColor(myImage,"magenta")> <cfset attr = StructNew()> <cfset attr.style="bolditalic"> <cfset attr.size=20> <cfset attr.font="verdana"> <cfset attr.underline="yes"> <cfset ImageDrawText(myImage,"Congratulations!",10,50,attr)> <cfset ImageDrawText(myImage,"Gabriella",50,125,attr)> <cfimage source="#myImage#" action="write" destination="myImage.jpg" overwrite="yes"> <img src="myImage.jpg"/>
For a list of valid named colors, see the cfimage tag in the CFML Reference.
ColdFusion provides several functions for drawing lines and shapes. For shapes, the first two values represent the x and y coordinates, respectively, of the upper-left corner of the shape. For simple ovals and rectangles, the two numbers following the coordinates represent the width and height of the shape in pixels. For a line, the values represent the x and y coordinates of the start point and end point of the line, respectively. To create filled shapes, set the filled attribute to true. The following example shows how to create an image with several drawing objects:
<!--- Create an image that is 200-pixels square. ---> <cfset myImage=ImageNew("",200,200)> <!--- Draw a circle that is 100 pixels in diameter. ---> <cfset ImageDrawOval(myImage,40,20,100,100)> <!--- Draw a filled rectangle that is 40 pixels wide and 20 pixels high. ---> <cfset ImageDrawRect(myImage,70,50,40,20,true)> <!--- Draw a 100-pixel square. ---> <cfset ImageDrawRect(myImage,40,40,100,100)> <!--- Draw two lines. ---> <cfset ImageDrawLine(myImage,130,40,100,200)> <cfset ImageDrawLine(myImage,50,40,100,200)> <!--- Write the ColdFusion image to a file. ---> <cfimage source="#myImage#" action="write" destination="testMyImage.gif" overwrite="yes"> <img src="testMyImage.gif"/>
ColdFusion provides several functions for controlling the appearance of drawing objects. As shown in the ImageDrawText example, you use the ImageSetDrawingColor function to define the color of text in an image. This function also controls the color of lines and shapes. To control line attributes (other than color), use the ImageSetDrawingStroke function. The ImageSetDrawingStroke function uses a collection to define the line attributes.
Drawing controls apply to all subsequent drawing functions in an image; therefore, order is important. In the following example, the drawing stroke attributes defined in the attribute collection apply to the square and the two lines. Similarly, the color green applies to the rectangle and the square, while the color red applies only to the two lines. You can reset a drawing control as many times as necessary within an image to achieve the desired effect.
<!--- Create an attribute collection for the drawing stroke. ---> <cfset attr=StructNew()> <cfset attr.width="4"> <cfset attr.endcaps="round"> <cfset attr.dashPattern=ArrayNew(1)> <cfset dashPattern[1]=8> <cfset dashPattern[2]=6> <cfset attr.dashArray=dashPattern> <cfset myImage=ImageNew("",200,200)> <cfset ImageDrawOval(myImage,40,20,100,100)> <!--- Set the drawing color to green for all subsequent drawing functions. ---> <cfset ImageSetDrawingColor(myImage,"green")> <cfset ImageDrawRect(myImage,70,50,40,20,true)> <!--- Apply the attribute collection to all subsequent shapes and lines in the image. ---> <cfset ImageSetDrawingStroke(myImage,attr)> <cfset ImageDrawRect(myImage,40,40,100,100)> <!--- Set the drawing color to red for all subsequent drawing functions. ---> <cfset ImageSetDrawingColor(myImage,"red")> <cfset ImageDrawLine(myImage,130,40,100,200)> <cfset ImageDrawLine(myImage,50,40,100,200)> <cfimage source="#myImage#" action="write" destination="testMyImage.gif" overwrite="yes"> <img src="testMyImage.gif"/>
ColdFusion makes it easy to resize images. You can reduce the file size of an image by changing its dimensions, enforce uniform sizes on images, and create thumbnail images. The following table describes the ways to resize images in ColdFusion:
Task |
Functions and actions |
---|---|
Resize an image |
ImageResize function, or the resize action of the cfimage tag |
Resize images so that they fit in a defined square or rectangle and control the interpolation method |
ImageScaleToFit function |
Resize an image and control the interpolation method |
ImageResize function |