QR Code Studio Pro

Professional QR Code Generator with Advanced Features

0

QR Codes Generated

0

Downloads

0

QR Codes Scanned

Generator

#000000
#ffffff

Website URL

Link to website

WiFi

Share WiFi access

Email

Send email

SMS

Send text message

Phone

Make a call

vCard

Contact info

Preview & Export

QR Scanner

Paste a screenshot or image containing a QR code

API Documentation

Quick API Endpoint

Base URL: https://qr-generator.ptmri.id/generator/qrcode.php

JavaScript Example

// Fetch QR Code as Image
const textToEncode = 'Hello, World!';
const apiUrl = `https://qr-generator.ptmri.id/generator/qrcode.php?s=qr-h&sf=8&p=-20&d=${textToEncode}`;

fetch(apiUrl)
  .then(response => response.blob())
  .then(blob => {
    const imageUrl = URL.createObjectURL(blob);
    document.getElementById('qr-img').src = imageUrl;
  })
  .catch(error => console.error('Error:', error));

PHP Example

// Generate and save QR Code
$textToEncode = 'Hello, World!';
$apiUrl = 'https://qr-generator.ptmri.id/generator/qrcode.php?s=qr-h&sf=8&p=-20&d=' . urlencode($textToEncode);

$imageData = file_get_contents($apiUrl);
if ($imageData !== false) {
    file_put_contents('qr_code.png', $imageData);
    echo 'QR code saved successfully!';
}

Excel Formula

=IMAGE("https://qr-generator.ptmri.id/generator/qrcode.php?s=qr-h&sf=8&p=-20&d="&A1)