• 大小: 1.91MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-10
  • 语言: C/C++
  • 标签: C++二维码  

资源简介

由于小弟是新手还是只菜鸟,并没有做出完整完美的生成器,只是在一次看博客中前辈只是讲了导出动态库,并没有完全写出二维码代码,所以小弟只是学习。利用开源库bssQRCodeGenerator.dll创建最最简单的二维码生成器.里面使用到的是win32和纯C++ 创建的文档类视图,利用点击菜单在桌面生成二维码。仅仅可供新手参考

资源截图

代码片段和文件信息

// QRcode.cpp : Defines the entry point for the application.
//

#include “stdafx.h“
#include “QRcode.h“
#include “gdiplusenums.h“
#define MAX_LOADSTRING 100
#include “bssQRCodeGenerator.h“ 
#include 
#include 


using namespace std;

// Global Variables:
HINSTANCE hInst; // current instance
TCHAR sztitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; // the main window class name

// Forward declarations of functions included in this code module:
ATOM MyRegisterClass(HINSTANCE hInstance);
BOOL InitInstance(HINSTANCE int);
LRESULT CALLBACK WndProc(HWND UINT WPARAM LPARAM);
LRESULT CALLBACK About(HWND UINT WPARAM LPARAM);

int APIENTRY _tWinMain(HINSTANCE hInstance
                     HINSTANCE hPrevInstance
                     LPTSTR    lpCmdLine
                     int       nCmdShow)
{
  // TODO: Place code here.
MSG msg;
HACCEL hAccelTable;

// Initialize global strings
LoadString(hInstance IDS_APP_title sztitle MAX_LOADSTRING);
LoadString(hInstance IDC_QRCODE szWindowClass MAX_LOADSTRING);
MyRegisterClass(hInstance);

// Perform application initialization:
if (!InitInstance (hInstance nCmdShow)) 
{
return FALSE;
}

hAccelTable = LoadAccelerators(hInstance (LPCTSTR)IDC_QRCODE);

// Main message loop:
while (GetMessage(&msg NULL 0 0)) 
{
if (!TranslateAccelerator(msg.hwnd hAccelTable &msg)) 
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}

return (int) msg.wParam;
}



//
//  FUNCTION: MyRegisterClass()
//
//  PURPOSE: Registers the window class.
//
//  COMMENTS:
//
//    This function and its usage are only necessary if you want this code
//    to be compatible with Win32 systems prior to the ‘RegisterClassEx‘
//    function that was added to Windows 95. It is important to call this function
//    so that the application will get ‘well formed‘ small icons associated
//    with it.
//
ATOM MyRegisterClass(HINSTANCE hInstance)
{
WNDCLASSEX wcex;

wcex.cbSize = sizeof(WNDCLASSEX); 

wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = (WNDPROC)WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hIcon = LoadIcon(hInstance (LPCTSTR)IDI_QRCODE);
wcex.hCursor = LoadCursor(NULL IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = (LPCTSTR)IDC_QRCODE;
wcex.lpszClassName = szWindowClass;
wcex.hIconSm = LoadIcon(wcex.hInstance (LPCTSTR)IDI_SMALL);

return RegisterClassEx(&wcex);
}

//
//   FUNCTION: InitInstance(HANDLE int)
//
//   PURPOSE: Saves instance handle and creates main window
//
//   COMMENTS:
//
//        In this function we save the instance handle in a global variable and
//        create and display the main program window.
//


BOOL InitInstance(HINSTANCE hInstance int nCmdShow)
{
   HWND hWnd;

   hInst = hInstance;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-10-09 17:21  QRcode\
     文件        1158  2013-09-23 11:44  QRcode\BitMapImage.h
     文件        1979  2013-09-10 11:51  QRcode\bssQRCodeGenerator.h
     文件        2222  2012-12-13 06:30  QRcode\bssQRCodeGenerator.lib
     目录           0  2013-10-09 17:21  QRcode\Debug\
     文件     3309568  2012-12-13 06:30  QRcode\Debug\bssQRCodeGenerator.dll
     文件       13272  2013-10-09 17:21  QRcode\Debug\BuildLog.htm
     文件      281600  2013-09-11 09:55  QRcode\Debug\vc70.idb
     文件      372736  2013-09-11 09:55  QRcode\Debug\vc70.pdb
     文件       52096  2013-10-08 17:45  QRcode\QRcode.aps
     文件        8430  2013-10-09 17:17  QRcode\QRcode.cpp
     文件          56  2013-10-08 17:03  QRcode\QRcode.h
     文件       23558  2001-06-05 05:28  QRcode\QRcode.ico
     文件        3227  2013-10-08 17:45  QRcode\QRcode.rc
     文件         872  2013-09-11 09:57  QRcode\QRcode.sln
     文件         901  2013-09-10 14:53  QRcode\QRcode.sln.old
     文件       50176  2013-10-09 17:15  QRcode\QRcode.suo
     文件       10240  2013-09-11 09:57  QRcode\QRcode.suo.old
     文件        5792  2013-10-08 15:19  QRcode\QRcode.vcproj
     文件        4209  2013-09-11 09:53  QRcode\QRcode.vcproj.7.10.old
     文件        1427  2013-10-09 17:15  QRcode\QRcode.vcproj.CQ-201301061759.Administrator.user
     文件        2155  2013-09-10 14:53  QRcode\ReadMe.txt
     文件        1033  2013-10-08 17:44  QRcode\resource.h
     文件       23558  2001-06-05 05:28  QRcode\small.ico
     文件         293  2013-09-10 14:53  QRcode\stdafx.cpp
     文件         721  2013-09-23 17:53  QRcode\stdafx.h
     文件        4827  2013-09-11 09:57  QRcode\UpgradeLog.xml
     目录           0  2013-09-11 09:57  QRcode\_UpgradeReport_Files\
     文件        3348  2013-09-11 09:57  QRcode\_UpgradeReport_Files\UpgradeReport.css
     文件       12505  2008-01-11 01:25  QRcode\_UpgradeReport_Files\UpgradeReport.xslt
     文件          69  2013-09-11 09:57  QRcode\_UpgradeReport_Files\UpgradeReport_Minus.gif
............此处省略1个文件信息

评论

共有 条评论