您好,登錄后才能下訂單哦!
這篇文章主要介紹“Java添加文本框到PPT幻燈片的過程”,在日常操作中,相信很多人在Java添加文本框到PPT幻燈片的過程問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”Java添加文本框到PPT幻燈片的過程”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
Jar文件獲取及導(dǎo)入:
方法1:通過E-iceblue官網(wǎng)下載jar文件包。下載后,解壓文件,并將lib文件夾下的Spire.Presentation.jar文件導(dǎo)入到j(luò)ava程序。
方法2:可通過maven倉庫安裝導(dǎo)入。可參考導(dǎo)入方法。
Java代碼示例(供參考)
import com.spire.presentation.*;import com.spire.presentation.drawing.FillFormatType;import com.spire.presentation.drawing.GradientShapeType;import com.spire.presentation.drawing.OuterShadowEffect;import java.awt.*;public class AddTextBox { public static void main(String[]args)throws Exception { //創(chuàng)建文檔 Presentation ppt = new Presentation(); //獲取第一張幻燈片,添加指定大小和位置的矩形文本框 IAutoShape tb = ppt.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE,new Rectangle(80, 120, 550, 200)); //設(shè)置文本框邊框樣式 tb.getLine().setFillType(FillFormatType.SOLID); tb.getLine().setWidth(2.5); tb.getLine().getSolidFillColor().setColor(Color.white); //添加文本到文本框,并格式化文本 tb.appendTextFrame("添加文本框\n Append Textbox"); PortionEx textRange = tb.getTextFrame().getTextRange(); textRange.getFill().setFillType(FillFormatType.SOLID); textRange.getFill().getSolidColor().setColor(Color.white); textRange.setFontHeight(30); textRange.setLatinFont(new TextFont("Arial Unicode MS")); //填充文本框顏色為漸變色 tb.getFill().setFillType(FillFormatType.GRADIENT); tb.getFill().getGradient().setGradientShape(GradientShapeType.LINEAR); tb.getFill().getGradient().getGradientStops().append(1f,KnownColors.THISTLE); tb.getFill().getGradient().getGradientStops().append(0f,KnownColors.ROYAL_BLUE); //設(shè)置文本框陰影效果 OuterShadowEffect shadowEffect= new OuterShadowEffect(); shadowEffect.setBlurRadius(20); shadowEffect.setDirection(30); shadowEffect.setDistance(8); shadowEffect.getColorFormat().setColor(Color.LIGHT_GRAY); tb.getEffectDag().setOuterShadowEffect(shadowEffect); //設(shè)置文本框向右旋轉(zhuǎn)5度( 向左旋轉(zhuǎn)設(shè)置數(shù)值為負(fù)數(shù)) tb.setRotation(5); //保存文檔 ppt.saveToFile("AddTextBox.pptx",FileFormat.PPTX_2013); ppt.dispose(); }}
到此,關(guān)于“Java添加文本框到PPT幻燈片的過程”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。