QR_Encode.h 379 B

1234567891011121314151617
  1. #ifndef QR_ENCODE_H__
  2. #define QR_ENCODE_H__
  3. #include <stdbool.h>
  4. typedef struct{
  5. unsigned char **data; //QRCODE二维数据
  6. unsigned int size; //QRCODE二维大小
  7. }QR_OUT;
  8. /*
  9. lpsSource:需要生成QRCODE的数据信息
  10. qrout:生成的QRCODE信息,只有在返回true时有效
  11. return:true 成功,false失败
  12. */
  13. bool EncodeData(char *lpsSource, QR_OUT *qrout);
  14. #endif