Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Pothys - MitrahSoftPothys - MitrahSoftPriority
NewLabels
Fix versions
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
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Pothys - MitrahSoft
Pothys - MitrahSoftPriority
Labels
Fix versions
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
Created 20 August 2020 at 12:40
Updated 20 May 2022 at 15:44
Resolved 20 May 2022 at 13:21
I made a test with below example. In cfpdf tag using action - extractttext, seemed the result doesn't return the content as correct from the pdf.
<cfdocument format="pdf" filename="#expandpath('lucee.pdf')#" overwrite="true"> <p>This is <strong> PDF </strong> example <b> document <small> for </small> the <strike> test with CSS styles. </strike> </b></p> <p>This is PDF example document.</p> </cfdocument> <cfpdf action = "extracttext" type="xml" name="result" source="lucee.pdf"> <cfdump var="#result#" />
The result should be,
This is PDF example document for the test with CSS styles. This is PDF example document as xml format
But, lucee returns,
This is example PDF document the for test with CSS styles. This is PDF example document as xml format.