Effetto posterizza
L'effetto posterizza riduce il numero di colori univoci in un'immagine.
Il CLSID per questo effetto è CLSID_D2D1Posterize.
Immagine di esempio
Codice di esempio
ComPtr<ID2D1Effect> posterizeEffect;
m_d2dContext->CreateEffect(CLSID_D2D1Posterize, &posterizeEffect);
posterizeEffect->SetInput(0, bitmap);
posterizeEffect->SetValue(D2D1_POSTERIZE_PROP_RED_VALUE_COUNT, 4);
posterizeEffect->SetValue(D2D1_POSTERIZE_PROP_GREEN_VALUE_COUNT, 4);
posterizeEffect->SetValue(D2D1_POSTERIZE_PROP_BLUE_VALUE_COUNT, 4);
m_d2dContext->BeginDraw();
m_d2dContext->DrawImage(posterizeEffect.Get());
m_d2dContext->EndDraw();
Proprietà dell'effetto
Le proprietà per l'effetto posterize sono definite dall'enumerazione D2D1_POSTERIZE_PROP .
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Windows 10 [app desktop | App di Windows Store] |
Server minimo supportato | Windows 10 [app desktop | App di Windows Store] |
Intestazione | d2d1effects_2.h |
Libreria | d2d1.lib, dxguid.lib |