Status/Resolution/Reason: Closed/Fixed/
Reporter/Name(from Bugbase): Aaron Neff / Aaron Neff (Aaron Neff)
Created: 03/09/2016
Components: Document Management, PDF manipulation
Versions: 2016
Failure Type: Unspecified
Found In Build/Fixed In Build: Alpha_v12 /
Priority/Frequency: Normal / Unknown
Locale/System: English / Win All
Vote Count: 0
toSteps to reproduce:
1) Create temp and result directories
2) Run this code:
<cfscript>
//MyPDFStamped01.pdf does not get stamped (bad)
cfdocument(format="pdf", filename=expandPath('./temp/MyPDFToStamp01.pdf'), overwrite=true) {writeOutput("my PDF");};
cfpdf(action="addstamp", source=expandPath('./temp/MyPDFToStamp01.pdf'), destination=expandPath('./result/MyPDFStamped01.pdf'), overwrite=true) {
cfpdfparam(iconname="Approved", pages="1", coordinates="100,200,300,400", note="my note") {};
};
//MyPDFStamped02.pdf does not get stamped (bad)
cfhtmltopdf(destination=expandPath('./temp/MyPDFToStamp02.pdf'), overwrite=true) {writeOutput("my PDF");};
cfpdf(action="addstamp", source=expandPath('./temp/MyPDFToStamp02.pdf'), destination=expandPath('./result/MyPDFStamped02.pdf'), overwrite=true) {
cfpdfparam(iconname="Approved", pages="1", coordinates="100,200,300,400", note="my note") {};
};
//MyPDFStamped03.pdf does not get stamped (bad)
cfdocument(format="pdf", name="myPDF") {writeOutput("my PDF");};
cfpdf(action="addstamp", source="myPDF", destination=expandPath('./result/MyPDFStamped03.pdf'), overwrite=true) {
cfpdfparam(iconname="Approved", pages="1", coordinates="100,200,300,400", note="my note") {};
};
//MyPDFStamped04.pdf does not get stamped (bad)
cfhtmltopdf(name="myPDF") {writeOutput("my PDF");};
cfpdf(action="addstamp", source="myPDF", destination=expandPath('./result/MyPDFStamped04.pdf'), overwrite=true) {
cfpdfparam(iconname="Approved", pages="1", coordinates="100,200,300,400", note="my note") {};
};
</cfscript>
Actual result: none of the PDFs are stamped
Expected result: all 4 PDFs should be stamped
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 4126628
External Customer Info:
External Company:
External Customer Name: Aaron Neff
External Customer Email: adobelabs@itisdesign.com
External Test Config:
Attachments:
Comments: