tracker issue : CF-4198274

select a category, or use search below
(searches all categories and all time range)
Title:

Image Resize will not work

| View in Tracker

Status/Resolution/Reason: Closed/Withdrawn/NotABug

Reporter/Name(from Bugbase): Norbert Liedert / Norbert Liedert ()

Created: 01/19/2017

Components: CFIMAGE

Versions: 2016

Failure Type: Data Loss

Found In Build/Fixed In Build: 2016.0.03.300466 /

Priority/Frequency: Normal / All users will encounter

Locale/System: English / Linux All

Vote Count: 0

Problem Description:
If an simple image with the dimension of 1200X800 will be resize by image Tag, the image will not be rewritten.

Steps to Reproduce:
<cfimage action="resize" width="400" height="200" source="test.jpg" destination="testNew.jpg">

Actual Result:
Image will not be written.

Expected Result:
An image with the dimensions of 400X200 with the name testNew.jpg 

Any Workarounds:
none 
is tested in cfscript
is tesed in cftags

Attachments:

Comments:

Workaround like this will not work to <cfscript> myImage=ImageNew("test.jpg"); ImageResize(myImage,400,200,"highestperformance"); tmpImage = myImage.getImageBytes('jpg'); ImageWrite(tmpImage, expandPath('testNew.jpg')); </cfscript>
Comment by Norbert L.
1316 | January 19, 2017 10:34:20 AM GMT
Close Ticket. solved by permission update
Comment by Norbert L.
1317 | January 24, 2017 11:31:41 AM GMT