Home directory for Malawi's wwwroot
Duncan Ewan
2021-02-19 3e758c29e0fde36fc088efcfc88f9a3014432b64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<cfcomponent name="ImageObject">
<!---
    ImageObject.cfc written by Rick Root (rick@webworksllc.com)
 
    Related Web Sites:
    - http://www.opensourcecf.com/imagecfc (home page)
 
 
    This is an object oriented interface to the original
    ImageCFC.
 
    Example Code:
 
    io = createObject("component","ImageObject");
    io.setOption("defaultJpegCompression",95);
    io.init("#ExpandPath(".")#/emily.jpg");
    io.scaleWidth(500);
    io.save("#ExpandPath(".")#/imagex1.jpg");
 
    io.flipHorizontal();
    io.save("#ExpandPath(".")#/imagex2.jpg");
    io.revert();
    io.filterFastBlur(2,5);
    io.save("#ExpandPath(".")#/imagex3.jpg");
    io.revert();
    io.filterPosterize(32);
    io.save("#ExpandPath(".")#/imagex4.jpg");
 
 
    LICENSE
    -------
    Copyright (c) 2006, Rick Root <rick@webworksllc.com>
    All rights reserved.
 
    Redistribution and use in source and binary forms, with or
    without modification, are permitted provided that the
    following conditions are met:
 
    - Redistributions of source code must retain the above
      copyright notice, this list of conditions and the
      following disclaimer.
    - Redistributions in binary form must reproduce the above
      copyright notice, this list of conditions and the
      following disclaimer in the documentation and/or other
      materials provided with the distribution.
    - Neither the name of the Webworks, LLC. nor the names of
      its contributors may be used to endorse or promote products
      derived from this software without specific prior written
      permission.
 
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
    CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
    MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
    BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
    OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--->
 
<cfset variables.img = "">
<cfset variables.revertimg = "">
<cfset variables.imageCFC = createObject("component","image")>
<cfset variables.imageInfo = structNew()>
    <cfset variables.imageInfo.width = 0>
    <cfset variables.imageInfo.height = 0>
    <cfset variables.imageInfo.colorModel = "">
    <cfset variables.imageInfo.colorspace = "">
    <cfset variables.imageInfo.objColorModel = "">
    <cfset variables.imageInfo.objColorspace = "">
    <cfset variables.imageInfo.sampleModel = "">
    <cfset variables.imageInfo.imageType = 0>
    <cfset variables.imageInfo.misc = "">
    <cfset variables.imageInfo.canModify = false>
<cfset variables.imageCFC.setOption("throwonerror",true)>
 
<!---
 
    init(filename)        Initialize object from a file.
    init(width, height)   Initialize with a blank image
    init(bufferedImage)   Initiailize with an existing object
--->
<cffunction name="init" access="public" output="false" returnType="void">
    <cfargument name="arg1" type="any" required="yes">
    <cfargument name="arg2" type="any" required="no">
 
    <cfif isDefined("arg2") and isNumeric(arg1) and isNumeric(arg2)>
        <cfset arg1 = javacast("int",int(arg1))>
        <cfset arg2 = javacast("int",int(arg2))>
        <cfset variables.img = createObject("java","java.awt.image.BufferedImage")>
        <cfset variables.img.init(arg1,arg2,variables.img.TYPE_INT_RGB)>
    <cfelseif arg1.getClass().getName() eq "java.awt.image.BufferedImage">
        <cfset variables.img = arg1>
    <cfelseif isSimpleValue(arg1) and len(arg1) gt 0>
        <cfset imageResults = variables.imageCFC.readImage(arg1, "no")>
        <cfset variables.img = imageResults.img>
    <cfelse>
        <cfthrow message="Object Instantiation Error" detail="You have attempted to initialize ooimage.cfc with invalid arguments.  Please consult the documentation for correct initialization arguments.">
    </cfif>
    <cfif variables.revertimg eq "">
        <cfset variables.revertimg = variables.img>
    </cfif>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
    <cfreturn>
</cffunction>
 
<cffunction name="flipHorizontal" access="public" output="true" returnType="void" hint="Flip an image horizontally.">
    <cfset var imageResults = imageCFC.flipHorizontal(variables.img,"","")>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
</cffunction>
 
<cffunction name="getImageInfo" access="public" output="true" returntype="struct" hint="Returns image information.">
    <cfreturn variables.imageInfo>
</cffunction>
<cffunction name="getImageObject" access="public" output="true" returntype="struct" hint="Returns a java Buffered Image Object.">
    <cfreturn variables.img>
</cffunction>
 
<cffunction name="flipVertical" access="public" output="true" returntype="void" hint="Flop an image vertically.">
    <cfset var imageResults = imageCFC.flipVertical(variables.img,"","")>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
</cffunction>
 
<cffunction name="scaleWidth" access="public" output="true" returntype="void" hint="Scale an image to a specific width.">
    <cfargument name="newWidth" required="yes" type="numeric">
    <cfset var imageResults = imageCFC.scaleWidth(variables.img,"","", newWidth)>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
 
</cffunction>
 
<cffunction name="scaleHeight" access="public" output="true" returntype="void" hint="Scale an image to a specific height.">
    <cfargument name="newHeight" required="yes" type="numeric">
    <cfset var imageResults = imageCFC.scaleHeight(variables.img,"","", newHeight)>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
</cffunction>
 
<cffunction name="resize" access="public" output="true" returntype="void" hint="Resize an image to a specific width and height.">
    <cfargument name="newWidth" required="yes" type="numeric">
    <cfargument name="newHeight" required="yes" type="numeric">
    <cfargument name="preserveAspect" required="no" type="boolean" default="FALSE">
    <cfargument name="cropToExact" required="no" type="boolean" default="FALSE">
 
    <cfset var imageResults = imageCFC.resize(variables.img,"","",newWidth,newHeight,preserveAspect,cropToExact)>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
</cffunction>
 
<cffunction name="crop" access="public" output="true" returntype="void" hint="Crop an image.">
    <cfargument name="fromX" required="yes" type="numeric">
    <cfargument name="fromY" required="yes" type="numeric">
    <cfargument name="newWidth" required="yes" type="numeric">
    <cfargument name="newHeight" required="yes" type="numeric">
    <cfset var imageResults = imageCFC.crop(variables.img,"","",fromX,fromY,newWidth,newHeight)>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
 
</cffunction>
 
<cffunction name="rotate" access="public" output="true" returntype="void" hint="Rotate an image (+/-)90, (+/-)180, or (+/-)270 degrees.">
    <cfargument name="degrees" required="yes" type="numeric">
    <cfset var imageResults = imageCFC.rotate(variables.img,"","",degrees)>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
 
</cffunction>
 
<cffunction name="setOption" access="public" output="true" returnType="void" hint="Sets values for allowed CFC options.">
    <cfargument name="key" type="string" required="yes">
    <cfargument name="val" type="string" required="yes">
    <cfif lcase(trim(key)) eq "throwonerror">
        <cfthrow message="Option Configuration Error" detail="You cannot set the throwOnError option when using ImageObject.cfc">
    </cfif>
    <cfset imageCFC.setOption(key, val)>
 
</cffunction>
 
<cffunction name="getOption" access="public" output="true" returnType="any" hint="Returns the current value for the specified CFC option.">
    <cfargument name="key" type="string" required="yes">
    <cfreturn imageCFC.getOption(key)>
</cffunction>
 
<cffunction name="filterFastBlur" access="public" output="true" returntype="void" hint="Internal method used for flipping and flopping images.">
    <cfargument name="blurAmount" required="yes" type="numeric">
    <cfargument name="iterations" required="yes" type="numeric">
    <cfset var imageResults = imageCFC.filterFastBlur(variables.img,"","",blurAmount,iterations)>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
 
</cffunction>
 
<cffunction name="filterSharpen" access="public" output="true" returntype="void" hint="Internal method used for flipping and flopping images.">
    <cfset var imageResults = imageCFC.filterSharpen(variables.img,"","")>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
 
</cffunction>
 
 
<cffunction name="filterPosterize" access="public" output="true" returntype="void" hint="Internal method used for flipping and flopping images.">
    <cfargument name="amount" required="yes" type="string">
    <cfset var imageResults = imageCFC.filterPosterize(variables.img,"","",amount)>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
</cffunction>
 
 
<cffunction name="addText" access="public" output="true" returntype="void" hint="Add text to an image.">
    <cfargument name="x" required="yes" type="numeric">
    <cfargument name="y" required="yes" type="numeric">
    <cfargument name="fontDetails" required="yes" type="struct">
    <cfargument name="content" required="yes" type="String">
    <cfset var imageResults = imageCFC.addText(variables.img,"","",x,y,fontDetails,content)>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
 
</cffunction>
 
<cffunction name="watermark" access="public" output="false" returnType="void">
    <cfargument name="wmImage" required="yes" type="Any">
    <cfargument name="alpha" required="yes" type="numeric">
    <cfargument name="placeAtX" required="yes" type="numeric">
    <cfargument name="placeAtY" required="yes" type="numeric">
 
    <cfset var imageResults = "">
    <cfif isSimpleValue(wmImage)>
        <!--- filename or URL --->
        <cfset imageResults = imageCFC.watermark(variables.img,"","",wmImage,alpha,placeAtX,placeAtY)>
    <cfelse>
        <!--- must be a java object --->
        <cfset imageResults = imageCFC.watermark(variables.img,wmImage,"","",alpha,placeAtX,placeAtY)>
    </cfif>
    <cfset variables.revertimg = variables.img>
    <cfset variables.img = imageResults.img>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
 
</cffunction>
 
<cffunction name="save" access="public" output="false" returnType="void">
    <cfargument name="filename" type="string" required="no">
    <cfargument name="jpegCompression" type="numeric" required="no">
    <cfif isDefined("arguments.jpegCompression") and isNumeric(arguments.jpegCompression)>
        <cfset imageCFC.writeImage(filename,variables.img,jpegCompression)>
    <cfelse>
        <cfset imageCFC.writeImage(filename,variables.img)>
    </cfif>
</cffunction>
 
<cffunction name="revert" access="public" output="true" returntype="void" hint="Undo the previous manipulation.">
    <cfset variables.img = variables.revertimg>
    <cfset variables.imageInfo = imageCFC.getImageInfo(variables.img,"")>
</cffunction>
 
</cfcomponent>