Dynamically generating a QR code with PHP [closed]

It’s worth adding that, in addition to the QR codes library posted by @abaumg, Google provides a QR Codes API QR Codes APImany thanks to @Toukakoukan for the link update. To use this , basically: https://chart.googleapis.com/chart?chs=300×300&cht=qr&chl=http%3A%2F%2Fwww.google.com%2F&choe=UTF-8 300×300 is the size of the QR image you want to generate, the chl is the url-encoded string you … Read more

How to generate a QR Code for an Android application? [closed]

with zxing this is my code for create QR QRCodeWriter writer = new QRCodeWriter(); try { BitMatrix bitMatrix = writer.encode(content, BarcodeFormat.QR_CODE, 512, 512); int width = bitMatrix.getWidth(); int height = bitMatrix.getHeight(); Bitmap bmp = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565); for (int x = 0; x < width; x++) { for (int y = 0; y < height; … Read more