QR Code Generation

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

QR Code Generation

跳至解决方案
1,998 次查看
grt951
Contributor II

Hello I am working with a MCF51JE256 and will need to generate QR codes...has anyone had experience with this...I have found some sample C projects but they are all for image files i.e. .png, .gif etc. and I am really looking to generate the QR code and store it in memory as a bitmap...

标签 (1)
0 项奖励
回复
1 解答
1,689 次查看
bikenomad
Contributor IV

Look at libqrencode , which is a C library for doing this.

Its representation of a generated QR Code is just this (from the header file):

Symbol data is represented as an array contains width*width uchars.

Each uchar represents a module (dot). If the less significant bit of the uchar is 1, the corresponding module is black.

在原帖中查看解决方案

0 项奖励
回复
2 回复数
1,689 次查看
Monica
Senior Contributor III

Hello Gary!

How is that matter going? Was that information helpful?

Please keep us posted! :smileywink:

Best regards,

Monica.

0 项奖励
回复
1,690 次查看
bikenomad
Contributor IV

Look at libqrencode , which is a C library for doing this.

Its representation of a generated QR Code is just this (from the header file):

Symbol data is represented as an array contains width*width uchars.

Each uchar represents a module (dot). If the less significant bit of the uchar is 1, the corresponding module is black.

0 项奖励
回复