2012-12-19 100 views
2

在我的jsp上,存在包含問題和一些圖像的數據作爲問題反饋的圖形分析。 當我嘗試導出它使用顯示標籤爲pdf我可以成功地創建一個提及問題的pdf,但在圖像的情況下,我得到的圖像的網址。使用jsp中的顯示標籤將圖像導出爲pdf

如何將圖像導出爲pdf?

這裏是我的JSP代碼:

<display:table id="data" name="${questions}" requestURI="" pagesize="10" export="true" > 
     <display:column property="label" title="Question" sortable="true"/> 
     <display:column title="Graph Analysis" media=""> 
     <img src="${imagePath}${reportData.clientName}/${data.label}.png"/> 
     </display:column> 
     <display:setProperty name="export.pdf" value="true" /> 
</display:table> 

回答

0

我沒有測試過這一點,但嘗試添加設置爲PDF格式的媒體屬性,另一列,並有列的屬性是圖像BLOB或CLOB。

<display:table id="data" name="${questions}" requestURI="" pagesize="10" export="true" > 
     <display:column property="label" title="Question" sortable="true"/> 
     <display:column title="Graph Analysis" media=""> 
     <img src="${imagePath}${reportData.clientName}/${data.label}.png"/> 
     </display:column> 
     <display:column property="imageBlob" title="Photo/Image" media="pdf"/> 
     <display:setProperty name="export.pdf" value="true" /> 
</display:table>