//  CString szWaterText;
// szWaterText.Format(_T("Demo Image Process"));
// CString sFont(_T("Arial"));
// int iFontSize = 15;
// INT fStyle = FontStyleBold | FontStyleItalic;
//
// SolidBrush textBr(Color(255,200,80,62));
// SolidBrush textBrBack(Color(220,192,192,192));
// Gdiplus::Font textF(sFont, (REAL)iFontSize, fStyle, UnitPoint, NULL);
//
//
// PointF ptf;
// ptf.X = 3;
// ptf.Y = 3;
// int nLen = szWaterText.GetLength();
// g.DrawString(szWaterText.AllocSysString(), nLen, &textF, ptf, &textBrBack);
// ptf.X -= 1;
// ptf.Y -= 1;
// g.DrawString(szWaterText.AllocSysString(), nLen, &textF, ptf, &textBr);
//
// szWaterText.ReleaseBuffer();