资源简介
轻松获取exe,dll中的资源图片,并可以保存位ico,位图(BMP)格式
代码片段和文件信息
//CAutoFont class implementation
#include “stdafx.h“
#include “AutoFont.h“
CAutoFont::CAutoFont()
{
lf.lfHeight=-12;
lf.lfWidth=0;
lf.lfEscapement=0;
lf.lfOrientation=0;
lf.lfWeight=FW_NORMAL;
lf.lfItalic=0;
lf.lfUnderline=0;
lf.lfStrikeOut=0;
lf.lfCharSet=DEFAULT_CHARSET; //ANSI_CHARSET;
lf.lfOutPrecision=OUT_DEFAULT_PRECIS;
lf.lfClipPrecision=CLIP_DEFAULT_PRECIS;
lf.lfQuality=PROOF_QUALITY;
lf.lfPitchAndFamily=VARIABLE_PITCH | FF_ROMAN;
strcpy(lf.lfFaceName “Times New Roman“);
CreateFontIndirect(&lf);
fontColor=0;
hDC=NULL;
}
CAutoFont::CAutoFont(CString facename)
{
lf.lfHeight=-12;
lf.lfWidth=0;
lf.lfEscapement=0;
lf.lfOrientation=0;
lf.lfWeight=FW_NORMAL;
lf.lfItalic=0;
lf.lfUnderline=0;
lf.lfStrikeOut=0;
lf.lfCharSet=DEFAULT_CHARSET; //ANSI_CHARSET;
lf.lfOutPrecision=OUT_DEFAULT_PRECIS;
lf.lfClipPrecision=CLIP_DEFAULT_PRECIS;
lf.lfQuality=PROOF_QUALITY;
lf.lfPitchAndFamily=VARIABLE_PITCH | FF_ROMAN;
strcpy(lf.lfFaceName (LPCTSTR)facename);
CreateFontIndirect(&lf);
fontColor=0;
hDC=NULL;
}
CAutoFont::CAutoFont(LOGFONT& logfont)
{
lf=logfont;
CreateFontIndirect(&lf);
fontColor=0;
hDC=NULL;
}
CAutoFont::CAutoFont(CFont font)
{
HFONT hFont=(HFONT)font;
Attach((HFONT)hFont);
GetLogFont(&lf);
fontColor=0;
hDC=NULL;
}
CAutoFont::~CAutoFont()
{
}
LONG CAutoFont::SetHeight(LONG height)
{
LONG l=lf.lfHeight;
Deleteobject();
lf.lfHeight=height;
CreateFontIndirect(&lf);
return l;
}
LONG CAutoFont::SetHeightA(LONG height)
{
LONG l=lf.lfHeight;
Deleteobject();
if (height>0)
height=0-height;
lf.lfHeight=height;
CreateFontIndirect(&lf);
return l;
}
LONG CAutoFont::SetWidth(LONG width)
{
LONG l=lf.lfWidth;
Deleteobject();
lf.lfWidth=width;
CreateFontIndirect(&lf);
return l;
}
LONG CAutoFont::SetEscapement(LONG esc)
{
LONG l=lf.lfEscapement;
Deleteobject();
lf.lfEscapement=esc;
CreateFontIndirect(&lf);
return l;
}
LONG CAutoFont::SetOrientation(LONG or)
{
LONG l=lf.lfOrientation;
Deleteobject();
lf.lfOrientation=or;
CreateFontIndirect(&lf);
return l;
}
LONG CAutoFont::SetWeight(LONG weight)
{
LONG l=lf.lfWeight;
Deleteobject();
lf.lfWeight=weight;
CreateFontIndirect(&lf);
return l;
}
BYTE CAutoFont::SetCharset(BYTE charset)
{
BYTE b=lf.lfCharSet;
Deleteobject();
lf.lfCharSet=charset;
CreateFontIndirect(&lf);
return b;
}
BYTE CAutoFont::SetOutPrecision(BYTE op)
{
BYTE b=lf.lfOutPrecision;
Deleteobject();
lf.lfOutPrecision=op;
CreateFontIndirect(&lf);
return b;
}
BYTE CAutoFont::SetClipPrecision(BYTE cp)
{
BYTE b=lf.lfClipPrecision;
Deleteobject();
lf.lfClipPrecision=cp;
CreateFontIndirect(&lf);
return b;
}
BYTE CAutoFont::SetQuality(BYTE qual)
{
BYTE b=lf.lfQuality;
Deleteobject();
lf.lfQuality=qual;
CreateFontIndirect(&lf);
return b;
}
BY
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 251 2001-08-31 16:12 File_ID.txt
目录 0 2001-09-23 16:51 res\
文件 400 2001-09-22 09:17 res\IconSnap.rc2
文件 18270 2001-09-26 21:50 res\ButtonsWin3000.bmp
文件 214 1999-09-17 12:11 res\Check.bmp
文件 1270 1999-09-17 12:11 res\middlecheck.bmp
文件 214 1999-09-17 12:11 res\UnCheck.bmp
文件 1078 2001-09-26 23:43 res\IconSnap.ico
文件 7542 2000-05-22 10:57 AutoFont.cpp
文件 2340 1999-11-30 08:48 AutoFont.h
文件 31677 1999-09-17 12:11 ChkListBox.cpp
文件 5719 1999-09-17 12:11 ChkListBox.h
文件 19722 2001-09-26 21:56 Dib.cpp
文件 1328 2001-09-26 21:56 Dib.h
文件 27744 2001-09-27 00:01 Icons.cpp
文件 5361 2001-09-26 21:55 Icons.h
文件 2556 2001-09-26 22:10 IconSnap.cpp
文件 4751 2001-09-26 22:37 IconSnap.dsp
文件 539 2001-09-22 09:17 IconSnap.dsw
文件 1581 2001-09-23 20:41 IconSnap.h
文件 6117 2001-09-27 00:11 IconSnap.rc
文件 12222 2001-09-27 00:03 IconSnapDlg.cpp
文件 2160 2001-09-26 22:37 IconSnapDlg.h
文件 2866 2001-02-14 00:16 MemDC.h
文件 932 2001-09-20 00:25 ReadMe.txt
文件 958 2001-09-26 22:06 Resource.h
文件 210 2001-09-22 09:17 StdAfx.cpp
文件 999 2001-09-22 09:17 StdAfx.h
文件 8681 2001-09-26 22:07 WBButton.cpp
文件 4265 2001-07-13 00:30 WBButton.h
相关资源
- 淘宝秒杀源代码
- 适合初学者借鉴的arduino智能小车代码
- telnet 客户端和服务端源代码
- vue.js点餐app手机触屏滑动分类菜单切
- 非常小的恶搞电脑代码
- c primer plus 第六版源码及习题参考代码
- Unity 安卓串口收发代码
- 几个cuda源代码
- Faster RCNN pytroch代码
- 沪深两市-创业板-中小板-科创板-所有
- SourceInsight 完美的配色方案 theme_Mon
- 寻迹小车代码
- 利用相场法模拟金属晶粒生长的计算
- 冒险岛079代码大全
- 二进制转换为十进制Verilog代码
- 基于AT89S51利用MAX485半双工串行口通讯
- 《实战OPENGL三维可视化系统开发与源
- 机械设计——V带传动设计说明书及
- mybatis plus+springboot反向生成代码
- STM32FOC电机控制角度速度计算源代码
- cic verilog 代码
- MC9S12XS128驱动0v7620 图像采集源程序C代
- 红外通信代码和仿真电路图原创
- anyview手机连连看源代码
- 《unix网络编程》源代码
- 操作系统概念第七版答案(含编程代
- TDMS批量转MAT代码
- 图像亮度调整源代码
- 高斯平滑源代码
- 读取H264+发送RTP包的代码--VsParserSend
评论
共有 条评论