Creates a ColdFusion image that can be manipulated by using Image functions. You can use the cfimage tag to perform common image manipulation operations as a shortcut to Image functions.You can use the cfimage tag independently or in conjunction with Image function
Questions tagged [cfimage]
41 questions
1
vote
1 answer
Cfimage info very slow
I have the following script in coldfusion 9:
The image is on a local drive. This action takes up about 4 seconds. File is about 800kb in size (300 dpi, png). This seems…

Nebu
- 1,753
- 1
- 17
- 33
1
vote
3 answers
Using cfimage to display a file that doesn't have an extension
curious one this.
I'm working on a process that generates PDF files, combining data from various sources. The last piece of this process I need to complete is merging in image files.
This is actually fairly straightforward but the problem I have is…
user5639765
1
vote
1 answer
Coldfusion 9 CFIMAGE ICC Profiles - Not supported, why? & How to Resolve?
I'm running CF9 and just learned that CF9's CFIMAGE tag does not support ICC Profiles, which makes the "capability" pretty worthless on the Mac, which adds ICC Profiles to all screen grabs.
Has anyone else run into this. Is there a work around or…

WozPoz
- 992
- 2
- 15
- 29
1
vote
1 answer
Why is this ColdFusion 8 app causing CPU to spike?
Thank you for taking the time to look at this question.... Bear with me....
The other day one of our Web Servers stopped serving up web pages. The Web Server is a physical server running Windows Server 2003 R2 Standard Edition Service Pack 2 with…

Eric Belair
- 10,574
- 13
- 75
- 116
1
vote
1 answer
insert into DB and output blob images using Coldfusion 10
I have been working on a script that will allow users to asynchronously upload images.
the script contains several segments of code and while most of it works like a charm i've been experiencing issue while trying to convert coldfusion image object…

user2595617
- 219
- 3
- 13
1
vote
0 answers
Resizing Images using Java
I am using ColdFusion 9.0.1 to handle all of our image resizing.
It works great except for certain jpegs that are CMYK or have a certain ICC profile.
I am trying a java solution.
imgscalrPath = ExpandPath( "imgscalr-lib-4.2.jar" );
loader = …

George Murphy
- 937
- 2
- 10
- 16
1
vote
1 answer
Coldfusion SpreadsheetAddImage function does not insert image
I am currently on CF version 9.0.1 and I'm having trouble getting the SpreadsheetAddImage function to properly insert an image into the spreadsheet that I am generating. I'm not getting any error message, its just that the image does not display in…

user1489298
- 50
- 6
1
vote
1 answer
cfimage from binary in cfdocument
I am writing a PDF dynamically, and am creating a QR code on the document for eTicketing purposes
i set my cfdocument localurl=yes to include a different image, which works fine, but since I am using an API call to get the binary for the qrCode, the…

Jay Rizzi
- 4,196
- 5
- 42
- 71
1
vote
1 answer
How can I read image metadata from binary blobs?
I have some images (in PNG and JPG format), stored as blobs in the database. I am retrieving them with a query and would like to take action by reading the metadata without writing the image to disk.
I am looking for the file type and image width.

user1235905
- 145
- 7
1
vote
3 answers
Coldfusion 8 Error: Invalid image format or slow performance
Trying to troubleshoot someone else's not-so-great code. Any ideas would be greatly appreciated. It seems to bomb out at the that brings in the image:
If I comment out that if (and…

Macness
- 1,226
- 2
- 13
- 24
1
vote
2 answers
cfimage not displaying captcha image
I am using cfimage to generate captcha in coldfusion9. In my project there are three environments named dev, stage and production. The captcha image is getting displayed both in dev and production but in stage it is not displaying the image. When I…

B S Nayak
- 170
- 1
- 12
1
vote
1 answer
Is it possible to retrieve the path of a Coldfusion image tag to directly link to the picture?
I'm trying to use Coldfusions CFimage tag and Photoswipe.
My problem is, Photoswipe requires images to be set up like this:

frequent
- 27,643
- 59
- 181
- 333
1
vote
3 answers
Coldfusion CFDOCUMENT creates a red X
I have an issue with a server to server call with ColdFusion.
Suppose I have two servers, each with a file:
www.Content.com/webpage.cfm
www.Badge.com/badge.jpg
My source code looks like this:

Brad Hines
- 107
- 2
- 15
0
votes
1 answer
Error writing cfimage as a base64 on production but not on development server
I have a process that read and image, resizes it and writes base64 version of the image to a text file. It is working on a development box but when this code is moved to a production server I am getting an error stating that the image doesn't…

Lance
- 3,193
- 2
- 32
- 49
0
votes
2 answers
Image display within cfdocument
I am saving images in my db field like data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAAQABAAD/2wBDAAg......
When I display the images using
on a normal page it works fine. When using in a cfdocument…

Paul
- 11