在 Java 中管理簡報的連接線
簡介
PowerPoint 連接線是一種特殊的線條,可連接兩個圖形,且即使在投影片上移動或重新定位圖形時,仍會保持附著於圖形。
連接線通常會連接到 連接點(綠點),這些點預設存在於所有圖形上。當游標靠近時,連接點會顯示。
調整點(橙點)僅存在於某些連接線上,用於修改連接線的位置和形狀。
連接線類型
在 PowerPoint 中,您可以使用直線、彎頭(有角度)和曲線連接線。
Aspose.Slides 提供以下連接線:
| 連接線 | 圖片 | 調整點數量 |
|---|---|---|
ShapeType.Line |
![]() |
0 |
ShapeType.StraightConnector1 |
![]() |
0 |
ShapeType.BentConnector2 |
![]() |
0 |
ShapeType.BentConnector3 |
![]() |
1 |
ShapeType.BentConnector4 |
![]() |
2 |
ShapeType.BentConnector5 |
![]() |
3 |
ShapeType.CurvedConnector2 |
![]() |
0 |
ShapeType.CurvedConnector3 |
![]() |
1 |
ShapeType.CurvedConnector4 |
![]() |
2 |
ShapeType.CurvedConnector5 |
![]() |
3 |
使用連接線連接圖形
- 建立 Presentation 類別的實例。
- 透過索引取得投影片的參考。
- 使用
Shapes物件提供的addAutoShape方法,向投影片加入兩個 AutoShape。 - 使用
Shapes物件提供的addConnector方法,依據連接線類型新增連接線。 - 使用該連接線將圖形連接起來。
- 呼叫
reroute方法以套用最短的連接路徑。 - 儲存投影片。
以下 Java 程式碼示範如何在兩個圖形(橢圓與矩形)之間新增連接線(彎曲連接線):
// 建立代表 PPTX 檔案的簡報類別實例
Presentation pres = new Presentation();
try {
// 取得特定投影片的圖形集合
IShapeCollection shapes = pres.getSlides().get_Item(0).getShapes();
// 新增橢圓自動圖形
IAutoShape ellipse = shapes.addAutoShape(ShapeType.Ellipse, 0, 100, 100, 100);
// 新增矩形自動圖形
IAutoShape rectangle = shapes.addAutoShape(ShapeType.Rectangle, 100, 300, 100, 100);
// 向投影片的圖形集合加入連接線圖形
IConnector connector = shapes.addConnector(ShapeType.BentConnector2, 0, 0, 10, 10);
// 使用連接線將圖形連接起來
connector.setStartShapeConnectedTo(ellipse);
connector.setEndShapeConnectedTo(rectangle);
// 呼叫 reroute 方法,設定圖形之間的自動最短路徑
connector.reroute();
// 儲存簡報
pres.save("output.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
NOTE
Connector.reroute 方法會重新導向連接線,強制其在圖形之間走最短的路徑。為了達成此目的,該方法可能會變更 setStartShapeConnectionSiteIndex 與 setEndShapeConnectionSiteIndex 點。
指定連接點
如果希望連接線使用圖形上的特定點來連接兩個圖形,必須以以下方式指定您偏好的連接點:
- 建立 Presentation 類別的實例。
- 透過索引取得投影片的參考。
- 使用
Shapes物件提供的addAutoShape方法,向投影片加入兩個 AutoShape。 - 使用
Shapes物件提供的addConnector方法,依據連接線類型新增連接線。 - 使用該連接線將圖形連接起來。
- 在圖形上設定您偏好的連接點。
- 儲存投影片。
以下 Java 程式碼示範指定偏好連接點的操作:
// 建立代表 PPTX 檔案的簡報類別實例
Presentation pres = new Presentation();
try {
// 取得特定投影片的圖形集合
IShapeCollection shapes = pres.getSlides().get_Item(0).getShapes();
// 新增橢圓自動圖形
IAutoShape ellipse = shapes.addAutoShape(ShapeType.Ellipse, 0, 100, 100, 100);
// 新增矩形自動圖形
IAutoShape rectangle = shapes.addAutoShape(ShapeType.Rectangle, 100, 300, 100, 100);
// 向投影片的圖形集合加入連接線圖形
IConnector connector = shapes.addConnector(ShapeType.BentConnector2, 0, 0, 10, 10);
// 使用連接線將圖形連接起來
connector.setStartShapeConnectedTo(ellipse);
connector.setEndShapeConnectedTo(rectangle);
// 設定橢圓圖形上首選的連接點索引
int wantedIndex = 6;
// 檢查首選索引是否小於最大連接點索引數
if (ellipse.getConnectionSiteCount() > wantedIndex)
{
// 在橢圓自動圖形上設定首選的連接點
connector.setStartShapeConnectionSiteIndex(wantedIndex);
}
// 儲存簡報
pres.save("output.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
調整連接線點
您可以透過調整點來調整現有的連接線。僅能對具有調整點的連接線進行此類修改。請參閱 連接線類型 表格。
簡單案例
考慮一個情況,兩個圖形(A 與 B)之間的連接線穿過第三個圖形(C):

Presentation pres = new Presentation();
try {
ISlide sld = pres.getSlides().get_Item(0);
IShape shape = sld.getShapes().addAutoShape(ShapeType.Rectangle, 300, 150, 150, 75);
IShape shapeFrom = sld.getShapes().addAutoShape(ShapeType.Rectangle, 500, 400, 100, 50);
IShape shapeTo = sld.getShapes().addAutoShape(ShapeType.Rectangle, 100, 100, 70, 30);
IConnector connector = sld.getShapes().addConnector(ShapeType.BentConnector5, 20, 20, 400, 300);
connector.getLineFormat().setEndArrowheadStyle(LineArrowheadStyle.Triangle);
connector.getLineFormat().getFillFormat().setFillType(FillType.Solid);
connector.getLineFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
connector.setStartShapeConnectedTo(shapeFrom);
connector.setEndShapeConnectedTo(shapeTo);
connector.setStartShapeConnectionSiteIndex(2);
} finally {
if (pres != null) pres.dispose();
}
為了避免或繞過第三個圖形,我們可以透過將其垂直線向左移動來調整連接線:

IAdjustValue adj2 = connector.getAdjustments().get_Item(1);
adj2.setRawValue(adj2.getRawValue() + 10000);
複雜案例
要執行更複雜的調整,必須考慮以下事項:
- 連接線的可調點與計算並決定其位置的公式緊密相關。因此,點位置的變更可能會改變連接線的形狀。
- 連接線的調整點在陣列中以嚴格的順序定義。調整點的編號是從連接線的起點到終點依次排列。
- 調整點的值代表連接線形狀寬度/高度的百分比。
- 形狀以連接線的起點與終點乘以 1000 為界限。
- 第一點、第二點與第三點分別定義寬度的百分比、高度的百分比以及再次的寬度百分比。
- 在計算連接線調整點座標時,必須考慮連接線的旋轉與反射。注意,在 連接線類型 中顯示的所有連接線的旋轉角度皆為 0。
案例 1
考慮一個案例,兩個文字框物件透過連接線相互連接:

// 建立代表 PPTX 檔案的簡報類別實例
Presentation pres = new Presentation();
try {
// 取得簡報的第一張投影片
ISlide sld = pres.getSlides().get_Item(0);
// 加入將透過連接線連結的圖形
IAutoShape shapeFrom = sld.getShapes().addAutoShape(ShapeType.Rectangle, 100, 100, 60, 25);
shapeFrom.getTextFrame().setText("From");
IAutoShape shapeTo = sld.getShapes().addAutoShape(ShapeType.Rectangle, 500, 100, 60, 25);
shapeTo.getTextFrame().setText("To");
// 新增連接線
IConnector connector = sld.getShapes().addConnector(ShapeType.BentConnector4, 20, 20, 400, 300);
// 指定連接線的方向
connector.getLineFormat().setEndArrowheadStyle(LineArrowheadStyle.Triangle);
// 指定連接線的顏色
connector.getLineFormat().getFillFormat().setFillType(FillType.Solid);
connector.getLineFormat().getFillFormat().getSolidFillColor().setColor(Color.RED);
// 指定連接線的粗細
connector.getLineFormat().setWidth(3);
// 使用連接線將圖形連結起來
connector.setStartShapeConnectedTo(shapeFrom);
connector.setStartShapeConnectionSiteIndex(3);
connector.setEndShapeConnectedTo(shapeTo);
connector.setEndShapeConnectionSiteIndex(2);
// 取得連接線的調整點
IAdjustValue adjValue_0 = connector.getAdjustments().get_Item(0);
IAdjustValue adjValue_1 = connector.getAdjustments().get_Item(1);
} finally {
if (pres != null) pres.dispose();
}
調整
我們可以透過分別將相應的寬度與高度百分比提升 20% 與 200%,來變更連接線的調整點值:
// 更改調整點的值
adjValue_0.setRawValue(adjValue_0.getRawValue() + 20000);
adjValue_1.setRawValue(adjValue_1.getRawValue() + 200000);
結果:

為了定義一個模型以確定連接線各部份的座標與形狀,我們建立一個對應於 connector.getAdjustments().get_Item(0) 點之水平組件的形狀:
// 繪製連接線的垂直組件
float x = connector.getX() + connector.getWidth() * adjValue_0.getRawValue() / 100000;
float y = connector.getY();
float height = connector.getHeight() * adjValue_1.getRawValue() / 100000;
sld.getShapes().addAutoShape( ShapeType .Rectangle, x, y, 0, height);
結果:

案例 2
在 案例 1 中,我們示範了利用基本原理的簡單連接線調整操作。於一般情況下,必須考慮連接線的旋轉與顯示(由 connector.getRotation()、connector.getFrame().getFlipH() 以及 connector.getFrame().getFlipV() 設定)。接下來將示範此過程。
首先,向投影片加入一個新的文字框物件(To 1)(用於連接),並建立一條新的(綠色)連接線,將其與先前建立的物件連接。
// 建立新的綁定物件
IAutoShape shapeTo_1 = sld.getShapes().addAutoShape(ShapeType.Rectangle, 100, 400, 60, 25);
shapeTo_1.getTextFrame().setText("To 1");
// 建立新的連接線
connector = sld.getShapes().addConnector(ShapeType.BentConnector4, 20, 20, 400, 300);
connector.getLineFormat().setEndArrowheadStyle(LineArrowheadStyle.Triangle);
connector.getLineFormat().getFillFormat().setFillType(FillType.Solid);
connector.getLineFormat().getFillFormat().getSolidFillColor().setColor(Color.CYAN);
connector.getLineFormat().setWidth(3);
// 使用新建立的連接線將物件連接起來
connector.setStartShapeConnectedTo(shapeFrom);
connector.setStartShapeConnectionSiteIndex(2);
connector.setEndShapeConnectedTo(shapeTo_1);
connector.setEndShapeConnectionSiteIndex(3);
// 取得連接線的調整點
adjValue_0 = connector.getAdjustments().get_Item(0);
adjValue_1 = connector.getAdjustments().get_Item(1);
// 更改調整點的值
adjValue_0.setRawValue(adjValue_0.getRawValue() + 20000);
adjValue_1.setRawValue(adjValue_1.getRawValue() + 200000);
結果:

其次,建立一個形狀對應於穿過新連接線調整點 connector.getAdjustments().get_Item(0) 的水平組件。 我們將使用 connector.getRotation()、connector.getFrame().getFlipH() 與 connector.getFrame().getFlipV() 的值,並套用圍繞給定點 x0 的常用座標轉換公式來進行旋轉:
X = (x — x0) * cos(alpha) — (y — y0) * sin(alpha) + x0; Y = (x — x0) * sin(alpha) + (y — y0) * cos(alpha) + y0;
在本例中,物件的旋轉角度為 90 度,且連接線以垂直方式顯示,對應的程式碼如下:
// 保存連接線座標
x = connector.getX();
y = connector.getY();
// 修正連接線座標以防其出現異常
if (connector.getFrame().getFlipH() == NullableBool.True)
{
x += connector.getWidth();
}
if (connector.getFrame().getFlipV() == NullableBool.True)
{
y += connector.getHeight();
}
// 將調整點的值作為座標
x += connector.getWidth() * adjValue_0.getRawValue() / 100000;
// 轉換座標,因為 Sin(90)=1 且 Cos(90)=0
float xx = connector.getFrame().getCenterX() - y + connector.getFrame().getCenterY();
float yy = x - connector.getFrame().getCenterX() + connector.getFrame().getCenterY();
// 根據第二個調整點的值確定水平組件的寬度
float width = connector.getHeight() * adjValue_1.getRawValue() / 100000;
IAutoShape shape = sld.getShapes().addAutoShape(ShapeType.Rectangle, xx, yy, width, 0);
shape.getLineFormat().getFillFormat().setFillType(FillType.Solid);
shape.getLineFormat().getFillFormat().getSolidFillColor().setColor(Color.RED);
結果:

我們示範了包含簡單調整與具旋轉角度之複雜調整點的計算。藉由所學,您可以開發自己的模型(或撰寫程式碼)以取得 GraphicsPath 物件,甚至根據特定投影片座標設定連接線的調整點值。
找出連接線的角度
- 建立該類別的實例。
- 透過索引取得投影片的參考。
- 存取連接線形狀。
- 使用線條的寬度、高度、形狀框的高度與寬度來計算角度。
以下 Java 程式碼示範計算連接線形狀角度的操作:
Presentation pres = new Presentation("ConnectorLineAngle.pptx");
try {
Slide slide = (Slide)pres.getSlides().get_Item(0);
for (int i = 0; i < slide.getShapes().size(); i++)
{
double dir = 0.0;
Shape shape = (Shape)slide.getShapes().get_Item(i);
if (shape instanceof AutoShape)
{
AutoShape ashp = (AutoShape)shape;
if (ashp.getShapeType() == ShapeType.Line)
{
dir = getDirection(ashp.getWidth(), ashp.getHeight(),
ashp.getFrame().getFlipH() > 0, ashp.getFrame().getFlipV() > 0);
}
}
else if (shape instanceof Connector)
{
Connector ashp = (Connector)shape;
dir = getDirection(ashp.getWidth(), ashp.getHeight(),
ashp.getFrame().getFlipH() > 0, ashp.getFrame().getFlipV() > 0);
}
System.out.println(dir);
}
} finally {
if (pres != null) pres.dispose();
}
public static double getDirection(float w, float h, boolean flipH, boolean flipV)
{
float endLineX = w * (flipH ? -1 : 1);
float endLineY = h * (flipV ? -1 : 1);
float endYAxisX = 0;
float endYAxisY = h;
double angle = (Math.atan2(endYAxisY, endYAxisX) - Math.atan2(endLineY, endLineX));
if (angle < 0) angle += 2 * Math.PI;
return angle * 180.0 / Math.PI;
}
常見問題
如何判斷連接線是否可以「黏附」到特定圖形?
請確認該圖形提供了 connection sites。如果沒有或其計數為 0,則無法黏附;此時請使用自由端點並手動定位。建議在連接前先檢查端點計數。
如果刪除其中一個已連接的圖形,連接線會發生什麼情況?
其兩端將被分離;連接線仍會保留在投影片上,變成具有自由起點/終點的普通線條。您可以刪除它,或重新指派連接,並在需要時使用 reroute。
將投影片複製到另一個簡報時,連接線的綁定會被保留嗎?
通常會保留,前提是目標圖形也一併被複製。若將投影片插入至未包含連接圖形的檔案中,則連接線兩端會變為自由端點,需要重新連接。









