Details
Assignee
Michael OffnerMichael OffnerReporter
Pothys - MitrahSoftPothys - MitrahSoftLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
New
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Pothys - MitrahSoft
Pothys - MitrahSoftLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
Created 28 April 2023 at 06:37
Updated 28 April 2023 at 06:48
When using imageAddBorder() with negative value of thickness argument, it didn't throw error and ACF throws "Verify your inputs. Border width parameters should be non-negative" error.
<cfscript> img = imageNew("",200,200,"rgb","red"); imageAddBorder(img,-23,"blue"); cfimage(action = "writeToBrowser", source = img); </cfscript>