Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Shadowsocksx Ng | 31,238 | 2 days ago | 288 | gpl-3.0 | Swift | |||||
Next Generation of ShadowsocksX | ||||||||||
Zxing | 30,817 | 7,212 | 304 | 8 days ago | 16 | September 30, 2020 | 6 | apache-2.0 | Java | |
ZXing ("Zebra Crossing") barcode scanning library for Java, Android | ||||||||||
Public Apis | 19,641 | 9 days ago | 4 | |||||||
📚 A public list of APIs from round the web. | ||||||||||
Qrcodejs | 12,203 | 181 | 174 | a month ago | 1 | October 08, 2015 | 224 | mit | JavaScript | |
Cross-browser QRCode generator for javascript | ||||||||||
Rxtool | 11,931 | 2 months ago | 71 | apache-2.0 | Kotlin | |||||
Android开发人员不得不收集的工具类集合 | 支付宝支付 | 微信支付(统一下单) | 微信分享 | Zip4j压缩(支持分卷压缩与加密) | 一键集成UCrop选择圆形头像 | 一键集成二维码和条形码的扫描与生成 | 常用Dialog | WebView的封装可播放视频 | 仿斗鱼滑动验证码 | Toast封装 | 震动 | GPS | Location定位 | 图片缩放 | Exif 图片添加地理位置信息(经纬度) | 蛛网等级 | 颜色选择器 | ArcGis | VTPK | 编译运行一下说不定会找到惊喜 | ||||||||||
Amazing Qr | 9,562 | 9 | 5 | 2 months ago | 6 | September 24, 2016 | 63 | gpl-3.0 | Python | |
💮 amazing QRCode generator in Python (supporting animated gif) - Python amazing 二维码生成器(支持 gif 动态图片二维码) | ||||||||||
Qrcp | 9,135 | 5 months ago | 18 | April 24, 2021 | 19 | mit | Go | |||
:zap: Transfer files over wifi from your computer to your mobile device by scanning a QR code without leaving the terminal. | ||||||||||
Ieasemusic | 8,651 | a month ago | 143 | mit | JavaScript | |||||
网易云音乐第三方 | ||||||||||
Bgaqrcode Android | 7,530 | 1 | 1 | 2 years ago | 3 | April 08, 2016 | 216 | C | ||
QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式 | ||||||||||
Wifi Card | 6,201 | 13 days ago | mit | JavaScript | ||||||
📶 Print a QR code for connecting to your WiFi (wificard.io) |
A library for generating QR Codes from Java App engine application.
This QR Code is generated by an app engine microservice using this library
Google App Engine Java standard environment supports only a subset of Java 7 (full Java 8 support is in beta) classes so we need a workaround to create images without java.awt.Image
or java.awt.image.BufferedImage
.
This library uses QR-Code-generator and PNGJ to output QR Codes as SVG string and PNG (byte array and Base64 string).
App engine servlet basic example
@Override
public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {
QrCode qr = QrCode.encodeText("Hello world!", QrCode.Ecc.LOW);
response.setContentType("image/png");
response.setStatus(HttpServletResponse.SC_OK);
OutputStream stream = response.getOutputStream();
stream.write(qr.toByteArray(10, 0));
stream.close();
}
Inside this repository there is an App Engine demo application (gae-qr-code-generator-api)