资源简介
计算某种颜色在整张图片中的所占的比例
代码片段和文件信息
#include “StdAfx.h“
#include “Global.h“
//屏幕的宽度和高度
int g_screen_width;
int g_screen_heigth;
wstring mbcs_to_unicode(std::string str )
{
int len = 0;
len = (int)str.length();
int unicodeLen = ::MultiByteToWideChar( CP_ACP 0 str.c_str() -1 NULL 0 );
wchar_t * pUnicode;
pUnicode = new wchar_t[unicodeLen+1];
memset(pUnicode0(unicodeLen+1)*sizeof(wchar_t));
::MultiByteToWideChar( CP_ACP 0 str.c_str() -1 (LPWSTR)pUnicode unicodeLen );
wstring wstr = pUnicode;
delete[] pUnicode;
return wstr;
}
string unicode_to_mbcs(std::wstring wstr )
{
int len = 0;
len = (int)wstr.length();
int ansiLen = ::WideCharToMultiByte( CP_ACP 0 wstr.c_str() -1 NULL 0 NULL NULL);
char* pAnsi;
pAnsi = new char[ansiLen+1];
memset(pAnsi0(ansiLen+1)*sizeof(char));
::WideCharToMultiByte( CP_ACP 0 wstr.c_str() -1 (LPSTR)pAnsi ansiLen NULL NULL);
string str = pAnsi;
delete[] pAnsi;
return str;
}
CString get_app_dir()
{
TCHAR szFullPath[MAX_PATH];
CString strPath;
GetModuleFileName(NULL szFullPath MAX_PATH);
strPath=(CString)szFullPath;
int position=strPath.ReverseFind(_T(‘\\‘));
strPath=strPath.Left(position+1 );
return strPath;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-12-25 21:49 GreenCover\
目录 0 2016-12-25 21:49 GreenCover\CxImage\
文件 7736 2010-12-24 20:32 GreenCover\CxImage\stdint.h
文件 2856 2010-12-25 03:09 GreenCover\CxImage\xfile.h
文件 2628 2010-12-25 03:09 GreenCover\CxImage\ximabmp.h
文件 1921 2011-01-08 04:26 GreenCover\CxImage\ximacfg.h
文件 4368 2011-01-25 07:14 GreenCover\CxImage\ximadef.h
文件 31948 2011-02-08 05:50 GreenCover\CxImage\ximage.h
文件 8182 2011-01-07 21:45 GreenCover\CxImage\ximagif.h
文件 1828 2010-12-25 03:09 GreenCover\CxImage\ximaico.h
文件 7337 2010-12-25 03:09 GreenCover\CxImage\ximaiter.h
文件 2724 2010-12-25 03:09 GreenCover\CxImage\ximajas.h
文件 1299 2010-12-24 21:10 GreenCover\CxImage\ximajbg.h
文件 8766 2010-12-25 03:09 GreenCover\CxImage\ximajpg.h
文件 2172 2010-12-25 03:19 GreenCover\CxImage\ximamng.h
文件 2240 2010-12-24 21:58 GreenCover\CxImage\ximapcx.h
文件 2868 2011-01-08 01:41 GreenCover\CxImage\ximapng.h
文件 3219 2010-12-27 03:53 GreenCover\CxImage\ximapsd.h
文件 3349 2010-12-25 03:09 GreenCover\CxImage\ximaraw.h
文件 1213 2010-12-24 21:04 GreenCover\CxImage\ximaska.h
文件 2178 2010-12-25 03:09 GreenCover\CxImage\ximatga.h
文件 802 2004-06-02 05:05 GreenCover\CxImage\ximath.h
文件 2195 2010-12-25 03:09 GreenCover\CxImage\ximatif.h
文件 1442 2010-12-24 20:58 GreenCover\CxImage\ximawbmp.h
文件 5011 2010-12-25 03:09 GreenCover\CxImage\ximawmf.h
文件 3038 2010-12-25 03:09 GreenCover\CxImage\xiofile.h
文件 1059 2010-12-25 03:09 GreenCover\CxImage\xmemfile.h
文件 1272 2015-11-06 00:55 GreenCover\Global.cpp
文件 1279 2015-11-06 00:55 GreenCover\Global.h
文件 46632 2016-12-25 21:30 GreenCover\GreenCover.aps
文件 1699 2015-11-05 22:19 GreenCover\GreenCover.cpp
............此处省略56个文件信息
- 上一篇:Apple Color Emoji.ttf
- 下一篇:最新蓝牙5.1标准
评论
共有 条评论