首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何用GDIplus实现Chord函数?

如何用GDIplus实现Chord函数?
EN

Stack Overflow用户
提问于 2010-05-05 16:51:31
回答 1查看 345关注 0票数 2

下面是MFC提供的GDI函数Chord():

代码语言:javascript
复制
BOOL Chord( int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4 );

BOOL Chord( LPCRECT lpRect, POINT ptStart, POINT ptEnd );

在我看来,GDI+ ( Graphics类)没有提供这样的方法,那么我如何实现我自己的Chord函数(使用完全相同的原型)?

顺便说一句,我就是不明白为什么微软不提供它们。

谢谢。

EN

回答 1

Stack Overflow用户

发布于 2010-05-14 16:18:51

代码语言:javascript
复制
BOOL GDIplusChord( HDC hDC, INT x1, INT y1, INT x2, INT y2, INT x3, INT y3, INT x4, INT y4 )
{
    Graphics graphics(hDC);
    CRect rectBound(x1, y1, x2, y2);
    rectBound.NormalizeRect();
    Rect ellipseRect(rectBound.left, rectBound.top, rectBound.Width(), rectBound.Height());

    ////////////////////////////////////////////////////////////////////////////////
    // For testing only.
    BYTE        byAlpha = 200;
    SolidBrush  fillBrush(Color(byAlpha, 0, 0, 255));
    Pen         redPen(Color(byAlpha, 255, 0, 0), 3);
    ////////////////////////////////////////////////////////////////////////////////
    Status ret = InvalidParameter;

    if ( x3 == x4 && y3 == y4 )
    {
        // If the starting point and ending point of the curve are the same, a complete ellipse should be drawn. 
        ret = graphics.FillEllipse(&fillBrush, ellipseRect);
        ret = graphics.DrawEllipse(&redPen, ellipseRect);
        return Gdiplus::Ok == ret;
    }

    CPoint ptCenter(rectBound.CenterPoint());

#define PI 3.1415926

    REAL startAngle = atan2(y3-ptCenter.y, x3-ptCenter.x ) * 180.0f / PI;
    REAL sweepAngle = (atan2(y4-ptCenter.y, x4-ptCenter.x ) * 180.0f / PI) - startAngle - 360.0f;
    if ( sweepAngle < -360.0f )
        sweepAngle += 360.0f;

    GraphicsPath path;
    path.StartFigure();
    path.AddArc(ellipseRect, startAngle, sweepAngle);
    path.CloseFigure();

    ret = graphics.FillPath(&fillBrush, &path);
    ret = graphics.DrawPath(&redPen, &path);

    return Gdiplus::Ok == ret;
}
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/2771696

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档