因為 google ctemplate 原本就是 win32 ready, php 也是, 那為甚麼不順便做一下 php ctemplate php extension for win32 呢?
測試了一下, 東西已經丟上 github 了.
https://github.com/vanillahsu/php-ctemplate/tree
有需要的自己弄一份吧, binary 的話, 私下講吧.
$qr = qr_encode ('test for qrcode');
if (is_resource ($qr))
qr_save ($qr, '1.png');
or you can output direct to stdout.
$qr = qr_encode ('test for qrcode');
if (is_resource ($qr))
{
header ("Content-type: image/PNG");
qr_save ($qr);
}