0
我試圖用內聯CSS導出一個圓形圖像,但是當導出到Word文檔時,我得到一個巨大的矩形圖像。爲什麼?我該如何解決這個問題?是否有另一種簡單的導出方法(對.docx或PDF或其他)?CSS邊框半徑在jQuery-word-export插件中不起作用
我正在使用由markwindoll開發的jQuery-word-export插件。
我試圖是這樣的:Profile picture example
我所得到的是這樣的:Exported example
我的代碼是:
<div id="export-content">
<!-- PROFILE PICTURE -->
<div id="divProfielfoto" ng-controller="profielfotoCtrl">
<img id="profielfoto" ng-src="{{profielfoto}}" alt="profielfoto" style="width: 125px;height:125px;margin-bottom: 20px; border-radius:50%; border: 7px solid orange;" />
</div>
<input style="display: none;" id="profileUpload" type="file" accept="image/*"/>
<!-- PROFILE PICTURE END -->
</div>
<button class="word-export" onclick="export()">Export as .doc</button>
我導出代碼如下:
$(".word-export").click(function (event) {
$("#export-content").wordExport("CV " + naam);
});
任何其他插件/解決方案也是受歡迎的,如果它們易於使用(我是網絡應用程序開發的初學者)
我猜想導出庫沒有代碼來支持Word中的圓形邊框?不幸的是,除了重寫庫,或者將其作爲請求添加到開發人員之外,可能沒有那麼多。 – junkfoodjunkie
如果它不起作用,你有沒有試圖通過背景圖像爲你的#divProfielfoto div使用該邊框? – nguyenhoai890
nguyenhoai890我試過了,但它不起作用。那麼,在導出的文件中,它可以與邊框(它顯示)一起工作,但不是作爲一個圓圈 – Johnnybossboy