共用方式為


LinearGradientBrush::MultiplyTransform 方法 (gdiplusbrush.h)

LinearGradientBrush::MultiplyTransform方法會以本身乘積和另一個矩陣來更新此筆刷的轉換矩陣。

語法

Status MultiplyTransform(
  [in] const Matrix *matrix,
  [in] MatrixOrder  order
);

參數

[in] matrix

類型:const矩陣*

要乘以筆刷目前轉換矩陣之矩陣的矩陣指標。

[in] order

類型: MatrixOrder

選擇性。 MatrixOrder列舉的元素,指定乘法的順序。 MatrixOrderPrepend 指定傳遞的矩陣位於左側,而 MatrixOrderAppend 指定傳遞的矩陣位於右邊。 預設值為 MatrixOrderPrepend。

傳回值

類型: 狀態

如果方法成功,它會傳回 Ok,這是 Status 列舉的元素。

如果方法失敗,它會傳回 Status 列舉的其他其中一個專案。

備註

單一 3 ×3 矩陣可以儲存任何一連串的關聯轉換。 如果您有數個 3 個×3 矩陣,其中每一個矩陣都代表一個關聯轉換,則這些矩陣的乘積是單一 3 ×3 矩陣,代表整個轉換序列。 由該產品表示的轉換稱為複合轉換。 例如,假設矩陣 R 代表旋轉,而矩陣 T 代表翻譯。 如果矩陣 M 是產品 RT,則矩陣 M 代表複合轉換:先旋轉,然後再轉譯。

矩陣乘法的順序很重要。 一般而言,矩陣產品 RT 與矩陣產品 TR 不同。 在上一個段落中指定的範例中,RT (所代表的複合轉換會先旋轉,然後轉譯) 與 TR (表示的複合轉換不同,然後旋轉) 。

範例

下列範例會建立線性漸層筆刷,並使用它來填滿矩形。 接下來,程式碼會設定筆刷的轉換矩陣、使用轉換的筆刷填滿矩形、修改筆刷的轉換矩陣,然後再次以轉換的筆刷填滿矩形。

VOID Example_MultTrans(HDC hdc)
{
   Graphics myGraphics(hdc);

   Matrix S(2, 0, 0, 1, 0, 0);   // horizontal doubling
   Matrix T(1, 0, 0, 1, 50, 0);  // horizontal translation of 50 units

   LinearGradientBrush linGrBrush(
      Rect(0, 0, 200, 100),
      Color(255, 255, 0, 0),     // red
      Color(255, 0, 0, 255),     // blue
      LinearGradientModeHorizontal);

   // Fill a large area with the gradient brush (no transformation).
   myGraphics.FillRectangle(&linGrBrush, 0, 0, 800, 100);

   // Apply the scaling transformation.
   linGrBrush.SetTransform(&S);

   // Fill a large area with the scaled gradient brush.
   myGraphics.FillRectangle(&linGrBrush, 0, 150, 800, 100);

   // Form a composite transformation: first scale, then translate.
   linGrBrush.MultiplyTransform(&T, MatrixOrderAppend);

   // Fill a large area with the scaled and translated gradient brush.
   myGraphics.FillRectangle(&linGrBrush, 0, 300, 800, 100);
}

需求

   
最低支援的用戶端 Windows XP、Windows 2000 Professional [僅限桌面應用程式]
最低支援的伺服器 Windows 2000 Server [僅限桌面應用程式]
目標平台 Windows
標頭 gdiplusbrush.h (包含 Gdiplus.h)
程式庫 Gdiplus.lib
Dll Gdiplus.dll

另請參閱

筆刷和填滿的圖形

使用漸層筆刷填滿圖形

LinearGradientBrush \(英文\)

LinearGradientBrush::RotateTransform

LinearGradientBrush::ScaleTransform

LinearGradientBrush::TranslateTransform

矩陣

以矩陣來表示轉換

MatrixOrder

Rect

轉換