2014-11-17 64 views
-1

我想知道如果您對word文檔中的圖像調整大小有任何想法,我正在使用docx4j。我已經看到了圖像,但它太大了,我已經嘗試了一切來調整它的大小。我試過壓縮與ImageWriter/ImageWriteParam參數和方法SaveAsJPEGTiles沒有太多的運氣。它或者不在文檔doc中顯示,或者它仍然太大。我真的需要它是.5「X.5」。我從來不知道要在寬度和高度上投入什麼。 謝謝。將JPG圖像放入word文檔並調整其大小

回答

1

使用cx參數設置寬度!

/** 
* Create a <wp:inline> element suitable for this image, 
* which can be _embedded_ in w:p/w:r/w:drawing. 
* @param filenameHint Any text, for example the original filename 
* @param altText Like HTML's alt text 
* @param id1 An id unique in the document 
* @param id2 Another id unique in the document 
* @param cx Image width in twip 
* @param link true if this is to be linked not embedded 
* None of these things seem to be exposed in Word 2007's 
* user interface, but Word won't open the document if 
* any of the attributes these go in (except @ desc) aren't present! 
* @throws Exception 
*/ 
public Inline createImageInline(String filenameHint, String altText, 
     int id1, int id2, long cx, boolean link) throws Exception 
+0

非常感謝!這工作!我知道這將是一件簡單的事情:)它似乎總是。 – Dkeane

+0

@Dkeane很高興幫助!您不必感謝我,upvoting /接受答案讓大家知道它解決了這個問題,並且很有用。 – Vlad

相關問題