Effetto Nitido
Affina l'immagine.
ClSID per questo effetto è CLSID_D2D1Sharpen.
Immagine di esempio
Codice di esempio
ComPtr<ID2D1Effect> sharpenEffect;
m_d2dContext->CreateEffect(CLSID_D2D1Sharpen, &sharpenEffect);
sharpenEffect->SetInput(0, bitmap);
sharpenEffect->SetValue(D2D1_SHARPEN_PROP_SHARPNESS, 1.0f);
sharpenEffect->SetValue(D2D1_SHARPEN_PROP_THRESHOLD, 0.5f);
m_d2dContext->BeginDraw();
m_d2dContext->DrawImage(hueToRgbEffect.Get());
m_d2dContext->EndDraw();
Proprietà dell'effetto
Le proprietà per l'effetto nitido sono definite dall'enumerazione D2D1_SHARPEN_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 |