{"id":22866,"date":"2023-11-09T16:58:52","date_gmt":"2023-11-09T16:58:52","guid":{"rendered":"https:\/\/kindlepreneur.com\/?post_type=tools&#038;p=22866"},"modified":"2023-11-09T16:58:59","modified_gmt":"2023-11-09T16:58:59","slug":"qr-code-generator-for-authors","status":"publish","type":"page","link":"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/","title":{"rendered":"QR Code Generator for Books: Free Tool"},"content":{"rendered":"<h1>QR Code Generator for Books: Free Tool<\/h1>\n\n\n                <div id=\"kindle-qr-code\">\n        <div id=\"qr-generator\">\n            <div class=\"form-section\" id=\"qr-form-section\">\n                <form id=\"qrForm\" onsubmit=\"return false;\">\n                    <div class=\"inputContainer\">\n                        <h5>\n                            <span> Enter the URL you'd like them to go to when they scan the QR <\/span>\n                        <\/h5>\n                        <input type=\"text\" onchange=\"updateQrData();\" name=\"dataInput\" id=\"dataInput\"\n                            placeholder=\"Enter URL\" required \/>\n                    <\/div>\n                    <div class=\"inputContainer\">\n                        <h5>\n                            <span> Upload a logo or book cover (recommend 300x300) <\/span>\n                        <\/h5>\n                        <label for=\"imageUpload\" class=\"imageUpload\" id=\"imageUpload\">\n                            <span>Drag and drop or browse<\/span>\n                            <span>Recommended size 300 x 300px PNG, SVG or JPG<\/span>\n                            <span>Maximum file size 10MB<\/span>\n                        <\/label>\n                        <input type=\"file\" onchange=\"updateQrImg();\" name=\"imageInput\" id=\"imageInput\" accept=\"image\/*\" \/>\n                        <button id=\"remove_file\" onclick=\"removeUpload();\" style=\"display: none;\">\n                            Remove Image\n                        <\/button>\n                    <\/div>\n                    <div class=\"inputContainer\">\n                        <h5>\n                            <span> Choose a color (optional) <\/span>\n                        <\/h5>\n                        <div class=\"color-picker\">\n                            <div id='color'><\/div>\n                            <div id='color-code'>#000000<\/div>\n                            <img decoding=\"async\" src=\"https:\/\/kindlepreneur.com\/wp-content\/plugins\/kindle-qr-code-generator-v2\/images\/color.png\" >                             <div class=\"more_colors\">\n                                <div id=\"picker\">Pick a color<\/div>\n                                <input id=\"color-picker\" type=\"color\" value=\"#e6f28a\">\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <div class=\"inputContainer\" id=\"style_picker\">\n                        <h5>\n                            <span> Choose a style (optional) <\/span>\n                        <\/h5>\n                        <div class=\"style-picker\">\n                            <span name=\"image\"><img decoding=\"async\" class= \"style-selected\" id=\"image-1\" src=\"https:\/\/kindlepreneur.com\/wp-content\/plugins\/kindle-qr-code-generator-v2\/images\/qr-style.png\" style=\"width:54px\" ><\/span> <span name=\"image\"><img decoding=\"async\" id=\"image-2\"  src=\" https:\/\/kindlepreneur.com\/wp-content\/plugins\/kindle-qr-code-generator-v2\/images\/qr-style.png\" style=\"width:54px\" ><\/span> <span name=\"image\"><img decoding=\"async\" id=\"image-3\"  src=\" https:\/\/kindlepreneur.com\/wp-content\/plugins\/kindle-qr-code-generator-v2\/images\/qr-style.png\" style=\"width:54px\" ><\/span> <span name=\"image\"><img decoding=\"async\" id=\"image-4\"  src=\" https:\/\/kindlepreneur.com\/wp-content\/plugins\/kindle-qr-code-generator-v2\/images\/qr-style.png\" style=\"width:54px\" ><\/span> <span name=\"image\"><img decoding=\"async\" id=\"image-5\"  src=\" https:\/\/kindlepreneur.com\/wp-content\/plugins\/kindle-qr-code-generator-v2\/images\/qr-style.png\" style=\"width:54px\" ><\/span>                         <\/div>\n                    <\/div>\n\n                <\/form>\n            <\/div>\n            <div class=\"qr-section col-xl-5 col-lg-5 col-md-7 col-sm-10\" id=\"qr-code-pic\">\n                <div id=\"chart-wrapper\">\n                    <div id=\"canvas\" style=\"width: 290px\"><\/div>\n                    <div>\n\n\n                        <div class=\"download\">\n                            <button id=\"formButton\" onclick=\"downloadQR();\">\n                                Download QR Code\n                            <\/button>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                <button id=\"formPdfButton\"\n                    onclick=\"window.location.href = 'https:\/\/app.monstercampaigns.com\/c\/dilmlqwjykpoxsyh1ar7\/';\">\n                    <img decoding=\"async\" src=\"https:\/\/kindlepreneur.com\/wp-content\/plugins\/kindle-qr-code-generator-v2\/images\/Amzn_Rank_Book.png\" >                 <\/button>\n            <\/div>\n        <\/div>\n    <\/div>\n    <script type=\"text\/javascript\" src=\"https:\/\/unpkg.com\/qr-code-styling@1.5.0\/lib\/qr-code-styling.js\"><\/script>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/4.7.0\/css\/font-awesome.min.css\" \/>\n\n    <script>\n\n        $(document).ready(function () {\n            $(\"#qr-generator\").delay(1000).fadeIn(500);\n        });\n\n        const qrTextUpdate = (text, color) => {\n            qrCode.update()\n            const canvas = document.querySelector('#canvas canvas');\n            const context = canvas.getContext('2d');\n            context.font = 'bold 16px Poppins';\n            context.fillStyle = color;\n            context.textAlign = 'center';\n            context.fillText(text, canvas.width \/ 2, canvas.height - 17);\n            const x = canvas.width \/ 2;\n            const y = canvas.height \/ 2;\n            const textWidth = context.measureText(text).width + 30;\n            const textHeight = 25;\n            const rectX = parseInt(x - textWidth \/ 2);\n            context.lineWidth = 2;\n            context.strokeStyle = color;\n            context.beginPath();\n            if (text == \"\") { }\n            else { context.roundRect(rectX, 215, textWidth, textHeight, [40]); }\n            context.stroke();\n        }\n\n        $(document).on(\"change\", \"#color-picker\", function () {\n            dotsOptions = {\n                color: $(this).val(),\n                type: \"square\"\n            }\n            qrCode.update({\n                dotsOptions: dotsOptions\n            })\n            qrTextUpdate(qrText, $(this).val())\n        });\n\n        let qrText = ''\n\n        var myspan = $(\"span[name=image]\").click(function () {\n\n            myspan.find('img').removeClass('style-selected');\n            $(this).find('img').first().addClass('style-selected');\n            var selectedId = $(this).find('img').first().attr('id');\n\n            switch (selectedId) {\n                case 'image-1':\n                    qrText = ''\n                    break;\n                case 'image-2':\n                    qrText = 'Start Reading'\n                    break;\n                case 'image-3':\n                    qrText = 'Read Now'\n                    break;\n                case 'image-4':\n                    qrText = 'Get The Ebook'\n                    break;\n                case 'image-5':\n                    qrText = 'Download Here'\n                    break;\n                default:\n                    break;\n            }\n            qrTextUpdate(qrText)\n        });\n\n        qrData = document.getElementById('dataInput');\n        qrImage = document.getElementById('imageInput');\n        qrColor = document.getElementById('color-picker');\n        qrType = document.getElementById('type-Input');\n        qrSize = document.getElementById('size');\n\n        const qrCode = new QRCodeStyling({\n            width: 250,\n            height: 250,\n            data: \"https:\/\/kindlepreneur.com\/\",\n            type: \"canvas\",\n            image: \"\",\n            margin: 30,\n            dotsOptions: {\n                color: \"#000000\",\n                type: \"square\"\n            },\n            imageOptions: {\n                crossOrigin: \"anonymous\",\n                margin: 1\n            },\n            qrOptions: {\n                errorCorrectionLevel: \"H\"\n            }\n        });\n\n        $(document).on(\"change\", \"#color-picker\", function () {\n            dotsOptions = {\n                color: $(this).val(),\n                type: \"square\"\n            }\n            qrCode.update({\n                dotsOptions: dotsOptions\n            })\n            qrTextUpdate(qrText)\n        });\n\n\n\n        const updateQrData = () => {\n            if (qrData.value === \"\") {\n                qrData.value = \"https:\/\/kindlepreneur.com\/\";\n                newQrData = qrData.value;\n            } else {\n                newQrData = qrData.value;\n            }\n            qrCode.update({\n                data: newQrData\n            });\n            qrTextUpdate(qrText)\n        };\n\n        const updateQrImg = () => {\n            newQrImage = URL.createObjectURL(qrImage.files[0]);\n            qrCode.update({\n                image: newQrImage\n            });\n            qrTextUpdate(qrText)\n            document.getElementById(\"remove_file\").style.display = \"block\";\n            document.getElementById(\"imageUpload\").style.display = \"none\";\n            document.getElementById(\"imageInput\").style.display = \"none\";\n            document.getElementById(\"imageInput\").style.display = \"none\";\n            document.getElementById(\"style_picker\").style.display = \"none\";\n\n        };\n\n        const updateQrSize = () => {\n            if (qrSize.value === \"300\") {\n                qrCode.update({\n                    width: 300,\n                    height: 300,\n                })\n            } else if (qrSize.value === \"600\") {\n                qrCode.update({\n                    width: 600,\n                    height: 600,\n                })\n            }\n            qrTextUpdate(qrText)\n        };\n\n        function download(canvas, filename) {\n            var lnk = document.createElement('a'),\n                e;\n            lnk.download = filename;\n            lnk.href = canvas.toDataURL(\"image\/png;base64\");\n            if (document.createEvent) {\n                e = document.createEvent(\"MouseEvents\");\n                e.initMouseEvent(\"click\", true, true, window,\n                    0, 0, 0, 0, 0, false, false, false,\n                    false, 0, null);\n                lnk.dispatchEvent(e);\n            } else if (lnk.fireEvent) {\n                lnk.fireEvent(\"onclick\");\n            }\n        }\n\n        const downloadQR = () => {\n            const canvas = document.querySelector('canvas');\n            download(canvas, 'qr.png');\n        }\n\n\n        qrCode.append(document.getElementById('canvas'));\n\n\n\n\n        const removeUpload = () => {\n            document.getElementById(\"imageInput\").value = null;\n            newQrImage = null;\n            qrCode.update({\n                image: newQrImage\n            })\n            document.getElementById(\"remove_file\").style.display = \"none\";\n            document.getElementById(\"imageUpload\").style.display = \"flex\";\n            document.getElementById(\"imageInput\").style.display = \"block\";\n            document.getElementById(\"style_picker\").style.display = \"block\";\n        }\n\n        document.getElementById(\"color-picker\").onchange = function () {\n            document.getElementById(\"color\").style.background = this.value;\n            document.getElementById(\"color-code\").innerHTML = this.value;\n        }\n    <\/script>\n\n    \n\n\n\n<p class=\"has-text-align-center\"><strong>Problems?<\/strong> <strong>Won't Download?<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-center\"> Either a web browser plugin is stopping it, or a virus protector.  Try a different web browser, and if that doesn't work, then try to get the virus protector to allow that page to send the png.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is This Book QR Code Generator?<\/h2>\n\n\n\n<p>Hello and welcome to my free QR code generator. <\/p>\n\n\n\n<p>I designed this tool specifically because I thought it would be a great idea for authors using QR codes in something like their print books or marketing materials, to have a way to display their QR codes with a picture of their book!<\/p>\n\n\n\n<p>The idea stuck, and finally I and my team created this. You'll find instructions on how to use it below, as well as a few tips I've researched over the years for the best way to use QR codes in your publishing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-a-qr-code\">What is a QR Code?<\/h2>\n\n\n\n<p>A QR Code (which stands for Quick Response Code) is a small square image that is scannable using smart devices like your iPhone or Android phone. <\/p>\n\n\n\n<p>If you are creating the QR Code, it allows you to link to any website on the Internet. You do not necessarily have to own the content.&nbsp;<\/p>\n\n\n\n<p>It can be anything from a public webpage, to your Amazon page, to a YouTube video, to even a private webpage that only people with QR Codes can see.<\/p>\n\n\n\n<p>With my QR codes generator for authors, you can not only create QR codes that link to your books, but you can also include your author logo or a <a href=\"https:\/\/kindlepreneur.com\/book-cover-design\/\" target=\"_blank\" rel=\"noreferrer noopener\">book cover<\/a>, to help keep track of what QR codes you have!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-do-you-use-a-qr-code\">How do you use a QR Code?<\/h2>\n\n\n\n<p>For the end user, all you have to do is scan QR Codes using the camera on your smartphone.&nbsp;<\/p>\n\n\n\n<p>This works for both iOS and Android devices.<\/p>\n\n\n\n<p>Take out your camera app, make sure it can clearly see the code, and wait for the notification to appear. That\u2019s it!<\/p>\n\n\n\n<p>Once you\u2019ve scanned the QR Code, a notification should pop up on your phone. Tap that notification and it will take you to the URL that the code is designed to lead you to.<\/p>\n\n\n\n<p>This process used to be a lot more hassle. You usually had to have a separate app to scan a QR code, but now it\u2019s something you can easily do with your camera.&nbsp;<\/p>\n\n\n\n<p>This simplicity is why QR Codes have become a major outlet for certain types of <a href=\"https:\/\/kindlepreneur.com\/book-marketing\/\" target=\"_blank\" rel=\"noreferrer noopener\">marketing strategy<\/a>. It\u2019s a way to merge the physical and digital worlds.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-can-authors-use-qr-codes-effectively\">How Can Authors Use QR Codes Effectively?<\/h2>\n\n\n\n<p>When it comes to effective use of QR codes, there are a couple of techniques that authors can use to increase their sales and\/or email signups.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-where-to-put-qr-codes\">Where to Put QR Codes<\/h3>\n\n\n\n<p>Keep in mind that QR codes are meant to be scanned by a mobile phone or other smart device with a camera and iOS or Android running on it.&nbsp;<\/p>\n\n\n\n<p>That means that QR codes are best used on <em>physical<\/em> products.<\/p>\n\n\n\n<p>Now this is not universally true. There are instances when a QR code could be displayed digitally for people to see (see below), but for the most part, you\u2019ll be printing the code on something physical so it can be scanned with a barcode.<\/p>\n\n\n\n<p>So let\u2019s start by going through a few actual locations where you could put your author QR code.<\/p>\n\n\n\n<ul>\n<li><strong>On bookmarks:<\/strong> If you are at a book signing, a convention, or any other event, bookmarks are a great way to give something away for free, in order to give readers a reminder of what you have. A QR code can take it a step further. You can add a link to your ebook, series, or newsletter on the bookmark, giving readers ample opportunities to find your book in their own time.<\/li>\n\n\n\n<li><strong>On business cards<\/strong>: If you can\u2019t fit everything you\u2019d like to say on a <a href=\"https:\/\/kindlepreneur.com\/author-business-cards\/\" target=\"_blank\" rel=\"noreferrer noopener\">business card<\/a>, consider having a QR code embedded on the back or two one side. This will let readers, other authors, or working professionals the chance to learn more about you.<\/li>\n\n\n\n<li><strong>On banners or other promotional materials:<\/strong> You can put a QR code on just about anything. You could create stickers, pins, put it on a banner, or find other ways to creatively incorporate links to your books in promotional materials.<\/li>\n\n\n\n<li><strong>On print books: <\/strong>One of the best ways to use QR codes is in your<a href=\"https:\/\/kindlepreneur.com\/book-formatting-file-types-explained\/\" target=\"_blank\" rel=\"noreferrer noopener\"> print paperback<\/a> and\/or <a href=\"https:\/\/kindlepreneur.com\/self-publish-hardcover-book-amazon\/\">hardcovers<\/a>. Because for print, you can\u2019t link to anything like you can in an ebook. Adding QR codes makes it much easier for people reading the print version to find the link you want them to find. All without the hassle of having to look it up themselves or type a long URL in.<\/li>\n\n\n\n<li><strong>At the end of YouTube videos:<\/strong> Here\u2019s one of the rare digital products where a QR code might be a good idea. While you can have links in the description of a <a href=\"https:\/\/kindlepreneur.com\/youtube-sell-books\/\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube video<\/a>, not everyone watches on a computer or smart phone. If they are watching using a TV app, for example, a QR code could be a useful way for viewers to find your link.<\/li>\n\n\n\n<li><strong>Everywhere: <\/strong>Okay, so maybe not <em>everywhere<\/em>, but think of it this way. All you need to do is print out the QR code on a piece of paper, and you\u2019ve got some marketing material. Perhaps you could go to the library or around town, placing mysterious QR codes wherever you go. Who knows, you might spark a viral marketing campaign.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-what-to-link-to\">What to Link To<\/h3>\n\n\n\n<p>It\u2019s not enough to just have QR codes, you need to know where to send people. Send them to the wrong thing, and your marketing efforts are wasted.&nbsp;<\/p>\n\n\n\n<p>So here are a few places where you could consider sending your readers or potential readers.<\/p>\n\n\n\n<ul>\n<li><strong>Books: <\/strong>The most obvious place to send people to is your book sales page, either on Amazon or to a universal book link. You could put this on a bookmark for your first book, or put the next book in a series at the back of a paperback book.<\/li>\n\n\n\n<li><strong>Series:<\/strong> Perhaps a slightly more effective link would be your series page, giving readers the opportunity to buy all of your books at once. This can be especially effective if your books are <a href=\"https:\/\/kindlepreneur.com\/list-sites-promote-free-amazon-books\/\" target=\"_blank\" rel=\"noreferrer noopener\">undergoing a promotion<\/a> or you are sending them to a box set.<\/li>\n\n\n\n<li><strong><a href=\"https:\/\/kindlepreneur.com\/reader-magnets\/\">Reader magnet<\/a>: <\/strong>Possibly my favorite item on this list, we all know that email is <a href=\"https:\/\/kindlepreneur.com\/best-email-services-for-authors\/\" target=\"_blank\" rel=\"noreferrer noopener\">one of the most effective forms of marketing<\/a> for authors, and having a reader magnet such as a free short story can be a very effective way of getting people on that list. And an effective way to get people to your <a href=\"https:\/\/kindlepreneur.com\/reader-magnets\/\">reader magnet<\/a> or signup page is by using QR codes. If I were creating bookmarks or other similar promotional materials, I would definitely have at least one type go to my reader magnet.<\/li>\n\n\n\n<li><strong>Audiobooks:<\/strong> If you have an audiobook version of your book, it might be a good idea to let readers know, either on your promotional materials or in the print book itself.<\/li>\n\n\n\n<li><strong>Your author <a href=\"https:\/\/kindlepreneur.com\/author-website\/\">website<\/a>:<\/strong> Your author website is the hub of your business. So it stands to reason that you would want to direct people there, so they can find whatever you\u2019re ready to direct them to, whether it be your books, your social media, or your newsletter.<\/li>\n\n\n\n<li>Social media: QR codes are an opportunity for readers to engage with you, the author. So directing them to find your social media platform(s) of choice can be a great way to improve their reading experience.<\/li>\n\n\n\n<li><strong>Reviews: <\/strong>Sometimes it\u2019s difficult to get readers to <a href=\"https:\/\/kindlepreneur.com\/building-an-arc-launch-team\/\">leave reviews<\/a>, especially if they are reading a physical copy. One way around this is to add a QR code to the back of a print book that leads directly to the reviews of that book on Amazon. It saves the reader the hassle of looking it up, making it more likely that they will leave a review..<\/li>\n\n\n\n<li><strong>Appendices: <\/strong>Often you will have a lot of additional information you\u2019d like to hand off to your readers. This is especially true of nonfiction, where you could easily link to a glossary, bibliography, and <a href=\"https:\/\/kindlepreneur.com\/parts-of-a-book\/\" target=\"_blank\" rel=\"noreferrer noopener\">other bonus information<\/a>. But it could also work for fiction authors too, for items such as character profiles, inspirational Pinterest boards that you used while writing, etc.<\/li>\n\n\n\n<li><strong>Quizzes\/Tests: <\/strong>This is, again, a great option for non-fiction writers. A quiz or test can create an interactive element to your book, and QR codes are a great way to bring your reader there, especially if they are reading in print.<\/li>\n\n\n\n<li><strong>Book trailers: <\/strong>Want a fun way to get readers jazzed about your upcoming release? A book trailer is one way to do this, and a QR code is an effective way to get them there, especially if you add it to your print book cover, or other print materials. Potential readers who see the book could watch the trailer and get excited about the book before they even purchase it.<\/li>\n\n\n\n<li><strong>Scavenger hunt:<\/strong> QR codes can be used in fun and creative ways, and one that I recommend is the scavenger hunt. Direct people to a page with some information on it that leads to another QR code, then readers can scan that and it will lead them to the next clue. This can be a great strategy for viral marketing campaigns.&nbsp;<\/li>\n\n\n\n<li><strong>Photo galleries: <\/strong>Let\u2019s say you wanted to include a photo gallery in your book, but couldn\u2019t afford the cost of printing in color. A QR code leading to a webpage that lists your photos could be a good alternative.<\/li>\n\n\n\n<li><strong>Also By Page:<\/strong> I don\u2019t know about you, but I don\u2019t like having to update the \u201cAlso by\u201d section in <em>all<\/em> of my books every time I release a new book. A great way around this is to have a universal \u201cAlso by\u201d page on your website, and link to it using a QR code.<\/li>\n<\/ul>\n\n\n\r\n<section class=\"standard-cta testimonial\" id=\"cta-block_60a2c03918240\">\r\n    <div class=\"cta-inner row\">\r\n                    <div class=\"cta-media col-md-4\">\r\n                                    <div class=\"cta-media-inner\">\r\n                    \r\n                        <a href=\"https:\/\/courses.kindlepreneur.com\/courses\/mailerlite-for-authors-email\" alt=\"Sign Up Now\" target=\"_blank\" rel=\"nofollow noreferrer noopener\">                        \r\n                        \r\n                        \r\n                        <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/05\/MailerLite-Email-For-Authors-copy.png\" alt=\"MailerLite Email For Authors\" height=\"420\" width=\"760\">\r\n                        \r\n                        <\/a>                    <\/div>\r\n                            <\/div>\r\n        \r\n        <div class=\"cta-body col-md-8\" style=\"text-align:center;\">  \r\n                            <a class=\"cta-heading\" href=\"https:\/\/courses.kindlepreneur.com\/courses\/mailerlite-for-authors-email\" alt=\"Sign Up Now\">\r\n                            <h3>Free MailerLite Video Course<\/h3>\r\n                            <\/a>\r\n                        \r\n            <p>Learn how to setup and use your MailerLite account effectively to help sell more books.<\/p>\n            <a class=\"offer-button\" href=\"https:\/\/courses.kindlepreneur.com\/courses\/mailerlite-for-authors-email\" alt=\"Sign Up Now\" target=\"_blank\" rel=\"nofollow noreferrer noopener\">Sign Up Now<\/a>        <\/div>\r\n\r\n            <\/div>\r\n<\/section>\r\n\r\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-will-you-use-kindlepreneur-s-qr-code-generator\">How Will You Use Kindlepreneur's QR Code Generator?<\/h2>\n\n\n\n<p>So now you have a good idea of what QR codes are and how to use them, what are you going to try?<\/p>\n\n\n\n<p>Are you excited about this tool? Let us know by visiting my <a href=\"https:\/\/kindlepreneur.com\/contact-me\/\" target=\"_blank\" rel=\"noreferrer noopener\">contact page<\/a>, and consider checking out my other tools, such as <a href=\"https:\/\/kindlepreneur.com\/amazon-book-description-generator\/\">book description generator<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>QR Codes are a great marketing tool, but how can they benefit authors? Find out with our free QR code generator, exclusively for authors.<\/p>\n","protected":false},"author":24,"featured_media":22972,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"templates\/tools-with-sidebar.php","meta":{"om_disable_all_campaigns":false,"inline_featured_image":false,"footnotes":""},"categories":[26],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.9 (Yoast SEO v22.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Free QR Code Generator for Authors [Updated]<\/title>\n<meta name=\"description\" content=\"QR Codes are a great marketing tool, but how can they benefit authors? Find out with my free QR code generator, exclusively for authors.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"QR Code Generator for Books: Free Tool\" \/>\n<meta property=\"og:description\" content=\"QR Codes are a great marketing tool, but how can they benefit authors? Find out with my free QR code generator, exclusively for authors.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/\" \/>\n<meta property=\"og:site_name\" content=\"Kindlepreneur\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/kindlepreneur\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-09T16:58:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/08\/qr-code-generator-featured-image.png\" \/>\n\t<meta property=\"og:image:width\" content=\"700\" \/>\n\t<meta property=\"og:image:height\" content=\"366\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@DaveChesson\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/\",\"url\":\"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/\",\"name\":\"Free QR Code Generator for Authors [Updated]\",\"isPartOf\":{\"@id\":\"https:\/\/kindlepreneur.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/08\/qr-code-generator-featured-image.png\",\"datePublished\":\"2023-11-09T16:58:52+00:00\",\"dateModified\":\"2023-11-09T16:58:59+00:00\",\"description\":\"QR Codes are a great marketing tool, but how can they benefit authors? Find out with my free QR code generator, exclusively for authors.\",\"breadcrumb\":{\"@id\":\"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/#primaryimage\",\"url\":\"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/08\/qr-code-generator-featured-image.png\",\"contentUrl\":\"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/08\/qr-code-generator-featured-image.png\",\"width\":700,\"height\":366,\"caption\":\"featured image that says QR code generator\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/kindlepreneur.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"QR Code Generator for Books: Free Tool\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kindlepreneur.com\/#website\",\"url\":\"https:\/\/kindlepreneur.com\/\",\"name\":\"Kindlepreneur\",\"description\":\"Book Marketing for Self-Publishing Authors\",\"publisher\":{\"@id\":\"https:\/\/kindlepreneur.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kindlepreneur.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kindlepreneur.com\/#organization\",\"name\":\"Kindlepreneur\",\"url\":\"https:\/\/kindlepreneur.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kindlepreneur.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/01\/kindlepreneur_logo_white-copy.png\",\"contentUrl\":\"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/01\/kindlepreneur_logo_white-copy.png\",\"width\":330,\"height\":61,\"caption\":\"Kindlepreneur\"},\"image\":{\"@id\":\"https:\/\/kindlepreneur.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"http:\/\/facebook.com\/kindlepreneur\",\"https:\/\/x.com\/DaveChesson\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Free QR Code Generator for Authors [Updated]","description":"QR Codes are a great marketing tool, but how can they benefit authors? Find out with my free QR code generator, exclusively for authors.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/","og_locale":"en_US","og_type":"article","og_title":"QR Code Generator for Books: Free Tool","og_description":"QR Codes are a great marketing tool, but how can they benefit authors? Find out with my free QR code generator, exclusively for authors.","og_url":"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/","og_site_name":"Kindlepreneur","article_publisher":"http:\/\/facebook.com\/kindlepreneur","article_modified_time":"2023-11-09T16:58:59+00:00","og_image":[{"width":700,"height":366,"url":"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/08\/qr-code-generator-featured-image.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@DaveChesson","twitter_misc":{"Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/","url":"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/","name":"Free QR Code Generator for Authors [Updated]","isPartOf":{"@id":"https:\/\/kindlepreneur.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/#primaryimage"},"image":{"@id":"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/#primaryimage"},"thumbnailUrl":"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/08\/qr-code-generator-featured-image.png","datePublished":"2023-11-09T16:58:52+00:00","dateModified":"2023-11-09T16:58:59+00:00","description":"QR Codes are a great marketing tool, but how can they benefit authors? Find out with my free QR code generator, exclusively for authors.","breadcrumb":{"@id":"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/#primaryimage","url":"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/08\/qr-code-generator-featured-image.png","contentUrl":"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/08\/qr-code-generator-featured-image.png","width":700,"height":366,"caption":"featured image that says QR code generator"},{"@type":"BreadcrumbList","@id":"https:\/\/kindlepreneur.com\/qr-code-generator-for-authors\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/kindlepreneur.com\/"},{"@type":"ListItem","position":2,"name":"QR Code Generator for Books: Free Tool"}]},{"@type":"WebSite","@id":"https:\/\/kindlepreneur.com\/#website","url":"https:\/\/kindlepreneur.com\/","name":"Kindlepreneur","description":"Book Marketing for Self-Publishing Authors","publisher":{"@id":"https:\/\/kindlepreneur.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kindlepreneur.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kindlepreneur.com\/#organization","name":"Kindlepreneur","url":"https:\/\/kindlepreneur.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kindlepreneur.com\/#\/schema\/logo\/image\/","url":"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/01\/kindlepreneur_logo_white-copy.png","contentUrl":"https:\/\/kindlepreneur.com\/wp-content\/uploads\/2021\/01\/kindlepreneur_logo_white-copy.png","width":330,"height":61,"caption":"Kindlepreneur"},"image":{"@id":"https:\/\/kindlepreneur.com\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/facebook.com\/kindlepreneur","https:\/\/x.com\/DaveChesson"]}]}},"_links":{"self":[{"href":"https:\/\/kindlepreneur.com\/wp-json\/wp\/v2\/pages\/22866"}],"collection":[{"href":"https:\/\/kindlepreneur.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/kindlepreneur.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/kindlepreneur.com\/wp-json\/wp\/v2\/users\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/kindlepreneur.com\/wp-json\/wp\/v2\/comments?post=22866"}],"version-history":[{"count":35,"href":"https:\/\/kindlepreneur.com\/wp-json\/wp\/v2\/pages\/22866\/revisions"}],"predecessor-version":[{"id":36871,"href":"https:\/\/kindlepreneur.com\/wp-json\/wp\/v2\/pages\/22866\/revisions\/36871"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kindlepreneur.com\/wp-json\/wp\/v2\/media\/22972"}],"wp:attachment":[{"href":"https:\/\/kindlepreneur.com\/wp-json\/wp\/v2\/media?parent=22866"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kindlepreneur.com\/wp-json\/wp\/v2\/categories?post=22866"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}