Condividi tramite


Metodo PathGradientBrush::GetBlendCount (gdipluspath.h)

Il metodo PathGradientBrush::GetBlendCount ottiene il numero di fattori di fusione attualmente impostati per questo pennello sfumatura di percorso.

Sintassi

INT GetBlendCount();

Valore restituito

Tipo: INT

Questo metodo restituisce il numero di fattori di fusione attualmente impostati per questo pennello sfumatura di percorso.

Commenti

Prima di chiamare il metodo PathGradientBrush::GetBlend di un oggetto PathGradientBrush , è necessario allocare due buffer: uno per ricevere una matrice di fattori di fusione e uno per ricevere una matrice di posizioni di fusione. Per determinare le dimensioni dei buffer necessari, chiamare il metodo PathGradientBrush::GetBlendCount dell'oggetto PathGradientBrush . Le dimensioni (in byte) di ogni buffer devono essere il valore restituito di PathGradientBrush::GetBlendCount moltiplicato per sizeof( REAL).

Esempio

Nell'esempio seguente vengono illustrati diversi metodi della classe PathGradientBrush , tra cui PathGradientBrush::SetBlend, PathGradientBrush::GetBlendCount e PathGradientBrush::GetBlend. Il codice crea un oggetto PathGradientBrush e chiama il metodo PathGradientBrush::SetBlend per stabilire un set di fattori di fusione e posizioni di fusione per il pennello. Il codice chiama quindi il metodo PathGradientBrush::GetBlendCount per recuperare il numero di fattori di fusione. Dopo aver recuperato il numero di fattori di fusione, il codice alloca due buffer: uno per ricevere la matrice di fattori di fusione e uno per ricevere la matrice di posizioni di fusione. Il codice chiama quindi il metodo PathGradientBrush::GetBlend per recuperare i fattori di fusione e le posizioni di fusione.

VOID Example_GetBlend(HDC hdc)
{
   Graphics graphics(hdc);

   // Create a path that consists of a single ellipse.
   GraphicsPath path;
   path.AddEllipse(0, 0, 200, 100);

   // Use the path to construct a brush.
   PathGradientBrush pthGrBrush(&path);

   // Set the color at the center of the path to blue.
   pthGrBrush.SetCenterColor(Color(255, 0, 0, 255));

   // Set the color along the entire boundary of the path to aqua.
   Color colors[] = {Color(255, 0, 255, 255)};
   INT count = 1;
   pthGrBrush.SetSurroundColors(colors, &count);

   // Set blend factors and positions for the path gradient brush.
   REAL fac[] = {
      0.0f, 
      0.4f,     // 40 percent of the way from aqua to blue
      0.8f,     // 80 percent of the way from aqua to blue
      1.0f};

   REAL pos[] = {
      0.0f, 
      0.3f,   // 30 percent of the way from the boundary to the center
      0.7f,   // 70 percent of the way from the boundary to the center
      1.0f};

   pthGrBrush.SetBlend(fac, pos, 4);

   // Fill the ellipse with the path gradient brush.
   graphics.FillEllipse(&pthGrBrush, 0, 0, 200, 100);

   // Obtain information about the path gradient brush.
   INT blendCount = pthGrBrush.GetBlendCount();
   REAL* factors = new REAL[blendCount];
   REAL* positions = new REAL[blendCount];

   pthGrBrush.GetBlend(factors, positions, blendCount);

   for(INT j = 0; j < blendCount; ++j)
   {
      // Inspect or use the value in factors[j].
      // Inspect or use the value in positions[j].    
   }

   delete [] factors;
   delete [] positions; 
}

Requisiti

   
Client minimo supportato Windows XP, Windows 2000 Professional [solo app desktop]
Server minimo supportato Windows 2000 Server [solo app desktop]
Piattaforma di destinazione Windows
Intestazione gdipluspath.h (include Gdiplus.h)
Libreria Gdiplus.lib
DLL Gdiplus.dll

Vedi anche

Pennelli e forme piene

Creazione di una sfumatura di percorso

Riempimento di una forma con sfumatura di colore

PathGradientBrush

PathGradientBrush::GetBlend

PathGradientBrush::SetBlend