Status/Resolution/Reason: Closed/Fixed/BugVerified
Reporter/Name(from Bugbase): Aaron Neff / Aaron Neff (Aaron Neff)
Created: 03/09/2016
Components: Document Management
Versions: 2016
Failure Type: Unspecified
Found In Build/Fixed In Build: Beta2_v12 / Update 6
Priority/Frequency: Major / Unknown
Locale/System: English / Win All
Vote Count: 0
Duplicate ID: CF-4146073
Related Bugs:
4105756 - Blocking CT Gibson
4111705 - Blocking CT Gibson
CF-4146073 - Similar to
4147695 - Blocking CT Gibson
action="redaction" corrupts PDF text
Repro:
<cfscript>
cfhtmltopdf(destination=expandPath('./MyPDF1.pdf'), overwrite=true) {
writeOutput(repeatString("PDF 1 Page 1", 425));
cfhtmltopdfitem(type="pagebreak");
writeOutput(repeatString("PDF 1 Page 2", 425));
};
cfhtmltopdf(destination=expandPath('./MyPDF2.pdf'), overwrite=true) {
writeOutput(repeatString("PDF 2 Page 1", 425));
cfhtmltopdfitem(type="pagebreak");
writeOutput(repeatString("PDF 2 Page 2", 425));
};
cfpdf(action="merge", destination=expandPath('./MyPDFMerged.pdf'), overwrite=true) {
cfpdfparam(source=expandPath('./MyPDF1.pdf'));
cfpdfparam(source=expandPath('./MyPDF2.pdf'));
};
cfpdf(action="redact", source=expandPath('./MyPDFMerged.pdf'), destination=expandPath('./MyPDFRedacted.pdf'), overwrite=true) {
cfpdfparam(wordstoredact=["page"], ignorecase=true, pages="1-4");
};
cfpdf(action="addstamp", source=expandPath('./MyPDFRedacted.pdf'), destination=expandPath('./MyPDFStamped.pdf'), overwrite=true) {
cfpdfparam(iconname="approved", coordinates="200,300,400,500");
};
</cfscript>
Actual result: additional text is removed from MyPDFRedacted.pdf and MyPDFStamped.pdf
Expected result: only wordstoredact should be removed from MyPDFRedacted.pdf and MyPDFStamped.pdf
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 4126474
Bug Grouping Info:
Bug Group ID: BG175025
Bug ID: CF-4126474
Bug relationship: Awaiting Fix
Product: ColdFusion
Bug Group ID: BG175025
Bug ID: CF-4105656
Bug relationship: Awaiting Fix
Product: ColdFusion
Bug Group ID: BG175025
Bug ID: 4105756
Bug relationship: Pending Fix
Product: CT Gibson
Bug Group ID: BG175025
Bug ID: 4111705
Bug relationship: Pending Fix
Product: CT Gibson
Bug Group ID: BG175025
Bug ID: 4112256
Bug relationship: Awaiting Fix
Product: CT Gibson
External Customer Info:
External Company:
External Customer Name: Aaron Neff
External Customer Email: adobelabs@itisdesign.com
External Test Config:
Bug File Paths:
\\sjshare.corp.adobe.com\Prereleasebugfiles\ColdFusion\12.0\Beta2_v12\4105656\MyPDFStamped.pdf
\\sjshare.corp.adobe.com\Prereleasebugfiles\ColdFusion\12.0\Beta2_v12\4105656\MyPDFRedacted.pdf
\\sjshare.corp.adobe.com\Prereleasebugfiles\ColdFusion\12.0\Beta2_v12\4105656\MyPDFRedacted_1.pdf
Attachments:
Comments: