wemzwym 2013-12-02 13:45 采纳率: 0%
浏览 1879

窗口显示不出汉字 打印机也打印不出汉字 textout函数输出汉字变为 |竖线

#include
#include
LPCTSTR bmp_filename = "C:\photo\aaa.bmp";
LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam);
HWND hwMain;
HANDLE hbmp = NULL;
const int ID_FILE_PRINT = LINE;
int get_line_height(HDC hdc)
{ //return text line height
//return value < 0 if map mode is not MM_TEXT, so that you can always use
//y+= line_height when drawing to device.
int map_mode = GetMapMode(hdc);
TEXTMETRIC tm;
GetTextMetrics(hdc,&tm);
int h = tm.tmHeight + tm.tmExternalLeading;
if(MM_TEXT != map_mode)
h = 0 - h;
return h;
}
double get_screen_pixel_width(int map_mode)
{ //purpose: a pixel displayed in MM_TEXT mode should be about the same size
//when displayed in other map mode.
HDC hdc = GetDC(NULL);
double hroz_size = GetDeviceCaps(hdc,HORZSIZE);//Width, in millimeters, of the physical screen.
double horz_res = GetDeviceCaps(hdc, HORZRES);//Width, in pixels, of the screen.
double pixel_width = hroz_size / horz_res; // Width, in millimeters
// 1 inch = 25.4 mm
const double INCH_TO_MM = 25.4;
const double INCH_TO_TWIP = 1440;
switch(map_mode)
{
case MM_LOMETRIC:
pixel_width = 10;

break;
case MM_HIMETRIC:
pixel_width *= 100;
break;
case MM_TEXT:
break;
case MM_LOENGLISH: //Each logical unit is mapped to 0.01 inch
pixel_width = pixel_width / INCH_TO_MM * 100;
break;
case MM_HIENGLISH: //Each logical unit is mapped to 0.001 inch
pixel_width = pixel_width / INCH_TO_MM * 1000;
break;
case MM_TWIPS: //Each logical unit is mapped to one twentieth of a printer's point (1/1440 inch, also called a twip).
pixel_width = pixel_width / INCH_TO_MM * INCH_TO_TWIP;
break;
default:
break;
}
return pixel_width;//Width, in logical units according to the map_mode
}
void draw(HDC hdc)
{
if(hbmp == NULL)
{
hbmp = (HANDLE)LoadImage( NULL,bmp_filename ,
IMAGE_BITMAP, 0,0,LR_LOADFROMFILE);
}

int map_mode = MM_TWIPS;
LPCTSTR map_name1 ="abc我想打印中文";
LPCTSTR map_name2 = "def我想打印中文";
SetMapMode(hdc,map_mode); //Each logical unit is mapped to 0.1 millimeter.
int x = 0;
int y = 0;
int line_h = get_line_height(hdc);
SelectObject(hdc,GetStockObject(BLACK_PEN));
SetBkMode(hdc, TRANSPARENT);
int len = strlen(map_name1);
len = strlen(map_name2);
TextOut(hdc,x, y,map_name1,strlen(map_name1));
y += line_h;
TextOut(hdc,x, y,map_name2,strlen(map_name2));
if( NULL != hbmp)
{ x=x+2500;y=0;

BITMAP bm;
GetObject( hbmp, sizeof(BITMAP), &bm );
long width=bm.bmWidth;
long height=bm.bmHeight;
HDC memdc = CreateCompatibleDC(hdc);
HGDIOBJ oldbmp = SelectObject(memdc,hbmp);
double pixel_size = get_screen_pixel_width(map_mode);
int bmp_draw_width = (int)(width * pixel_size) ;
int bmp_draw_height = (int)(height * pixel_size) ;
StretchBlt(hdc,x,y, bmp_draw_width ,-bmp_draw_height, memdc, 0,0,width,height,SRCCOPY);
SelectObject(memdc,oldbmp);
DeleteDC(memdc);
}
else
{
LPCTSTR error_msg = "failed to load bitmap from file";
TextOut(hdc,x,5*y,error_msg,strlen(error_msg));
}

}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int iCmdShow)
{
MSG msg;
WNDCLASSEX wndclass ;
HMENU hMenu,hMenuA;
wndclass.cbSize = sizeof(wndclass);
wndclass.style = CS_HREDRAW | CS_VREDRAW;
wndclass.lpfnWndProc = WndProc;
wndclass.cbClsExtra = 0;
wndclass.cbWndExtra = 0;
wndclass.hInstance = hInstance;
wndclass.hIcon = NULL;
wndclass.hCursor = LoadCursor(NULL,IDC_ARROW);
wndclass.hbrBackground = (HBRUSH)GetStockObject(LTGRAY_BRUSH);
wndclass.lpszMenuName = NULL;
wndclass.lpszClassName = "PrintDemo";
wndclass.hIconSm = NULL;
RegisterClassEx (&wndclass);
hwMain=CreateWindow (wndclass.lpszClassName,NULL,WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT,CW_USEDEFAULT,500,568,NULL,NULL,hInstance,NULL);
hMenu=CreateMenu();
hMenuA=CreateMenu();
AppendMenu(hMenuA,MF_STRING,ID_FILE_PRINT,"Print");
AppendMenu(hMenu,MF_POPUP,(UINT)hMenuA,"File");
SetMenu(hwMain,hMenu);
ShowWindow (hwMain,iCmdShow);
UpdateWindow (hwMain);
while (GetMessage (&msg,NULL,0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return msg.wParam ;
}
/
This function is called by the Windows function DispatchMessage() */
LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
{
HDC hdc;
PAINTSTRUCT ps;
static PRINTDLG pd;
static DOCINFO dci;
static LPTSTR lpszDocName="Print Test";
switch (iMsg)
{
case WM_CREATE:
pd.lStructSize=sizeof(pd);
pd.hwndOwner=hwnd;
pd.hDevMode=NULL;
pd.hDevNames=NULL;
pd.Flags=PD_RETURNDC|PD_HIDEPRINTTOFILE |PD_RETURNDEFAULT;
pd.nFromPage=1;
pd.nToPage=1;
pd.nMinPage=1;
pd.nMaxPage=1;
pd.nCopies=1;
dci.cbSize=sizeof(dci);
dci.lpszDocName=lpszDocName;
dci.lpszOutput=NULL;
dci.lpszDatatype=NULL;
dci.fwType=0;
return 0;
case WM_COMMAND:
switch (LOWORD(wParam))
{
case ID_FILE_PRINT:
if (!PrintDlg(&pd))
return 0;
hdc=pd.hDC;
StartDoc(hdc,&dci);
StartPage(hdc);
draw(hdc);
EndPage(hdc);
EndDoc(hdc);
break;
}
return 0;
case WM_PAINT:
hdc=BeginPaint(hwnd,&ps);
draw(hdc);
EndPaint(hwnd,&ps);
return 0;
case WM_DESTROY :
PostQuitMessage(0);
return 0;
}
return DefWindowProc (hwnd, iMsg, wParam, lParam) ;
}

  • 写回答

1条回答

  • return_sir 2020-12-14 11:08
    关注

    解决办法: 在TextOut调用前加一句:  SelectObject(hdc, GetStockObject(SYSTEM_FIXED_FONT);

    可能原因: 默认使用的是设备字体, 它不一定支持中文

    评论

报告相同问题?

悬赏问题

  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题
  • ¥20 在虚拟机的pycharm上
  • ¥15 jupyterthemes 设置完毕后没有效果
  • ¥15 matlab图像高斯低通滤波
  • ¥15 针对曲面部件的制孔路径规划,大家有什么思路吗
  • ¥15 钢筋实图交点识别,机器视觉代码
  • ¥15 如何在Linux系统中,但是在window系统上idea里面可以正常运行?(相关搜索:jar包)
  • ¥50 400g qsfp 光模块iphy方案
  • ¥15 两块ADC0804用proteus仿真时,出现异常