基本信息
源码名称:C++竖排实例代码
源码大小:25.51M
文件格式:.zip
开发语言:C/C++
更新时间:2024-09-06
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
C 竖排实例代码,文字竖排显示

// 创建倾斜90度的字体
//
HFONT CreateFont_Shupai(pvn_sw_fontinfo pcandFont)
{
    HFONT hFontSHupai = NULL;
    unsigned long is_exist;
    TCHAR sname[40];

    HDC hDC = GetDC(0);
    // 在待显示字体前添加一个@字符, 比如"@宋体", 如果有"@宋体"字体, 说明该在字体支持旋转排列
    StringCchPrintf(sname, 40, _T("@%s"), pcandFont->name);
    is_exist = 0;
    // API枚举字体是否存在
    EnumFonts(hDC, sname, (FONTENUMPROCW)___EnumFontsProc, (LPARAM)&is_exist);
    if (is_exist)
    {
        hFontSHupai =
            CreateFont(pcandFont->size,
                0, 2700, 2700,
                pcandFont->weight,
                pcandFont->is_italic,
                pcandFont->is_underline,
                pcandFont->is_strikeout, DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, CLIP_CHARACTER_PRECIS, PROOF_QUALITY,
                0,
                sname);
    }
    else
    {
        hFontSHupai =
            CreateFont(pcandFont->size,
                0, 2700, 2700,
                pcandFont->weight,
                pcandFont->is_italic,
                pcandFont->is_underline,
                pcandFont->is_strikeout, DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, CLIP_CHARACTER_PRECIS, PROOF_QUALITY,
                0,
                pcandFont->name);
    }
    ReleaseDC(0, hDC);
    return hFontSHupai;
}