Create a QR Code ChatGPT Plugin

Avinash A
2 min readJun 4, 2023

--

Create a QR Code ChatGPT plugin enables you to Create a QR code for any text or url, Here’s how you can use it:

  1. data: This is the text or URL you want to encode into the QR code. This could be a website URL, a piece of text, a phone number, etc.
  2. size: This is the size of the QR code you want to generate. It’s specified as a string in the format “widthxheight”, for example “200x200”. If you don’t specify a size, a default size will be used.
  3. alt: This is the alt text for the QR code image. This text will be displayed if the image can’t be loaded, and it’s also used by screen readers for visually impaired users.
  4. title: This is the title for the QR code image. It’s displayed when you hover over the image with your mouse.

Here’s an example of how you might use the plugin to generate a QR code:

{
“data”: “https://www.example.com",
“size”: “200x200”,
“alt”: “Example Website QR Code”,
“title”: “Scan to visit example.com”
}

You would send this JSON object to the create_qr_code.getQRCode function, and it would return a QR code image that encodes the URL "https://www.example.com".

PROMPT

create_qr_code.getQRCode with data http://amazon.com/ , size 400x400 , alt Shop at Amazon & Whole Foods with title Order with Prime

--

--