{"id":2042,"date":"2024-01-12T16:49:00","date_gmt":"2024-01-12T16:49:00","guid":{"rendered":"https:\/\/codehim.com\/?p=2042"},"modified":"2024-01-22T14:49:52","modified_gmt":"2024-01-22T09:49:52","slug":"javascript-qr-code-generator-with-logo-jquery-qrcode","status":"publish","type":"post","link":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/","title":{"rendered":"JavaScript QR code Generator with Logo &#8211; jQuery qrcode"},"content":{"rendered":"<section class=\"cm-tb\">\n<div class=\"cm-row\">\n<p class=\"plugin-intro\"> The &#8220;qrcode&#8221; is a JavaScript QR code generator with logo. The plugin comes with 3 modes (normal, image strip and image box) that lets you to easily generate QR code dynamically with custom logo \/ label and much more. <\/p>\n<\/p><\/div>\n<div class=\"cm-row\">\n<\/div>\n<\/section>\n<section class=\"codehim-wrapper\">\n<div class=\"d-row\">\n<h2>Plugin Preview<\/h2>\n<figure class=\"item-preview\">\n<div id=\"featured-img-id\"><img decoding=\"async\" src=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg\" alt=\"JavaScript QR code Generator with Logo - jQuery qrcode\" \/><\/div><\/figure>\n<div class=\"item-like-share\">\n<div class=\"codehim-share\"> <span class=\"share-title\">Share this:<\/span> <span class=\"share-btn-container\"> <\/span> <\/div><\/p>\n<\/div>\n<p><span class=\"small-text\"><a href=\"https:\/\/codehim.com\/how-to-start-using-jquery\/\"> How to start using jQuery?<\/a><\/span><br \/>\n<span class=\"large-text\"><a href=\"https:\/\/codehim.com\"> More jQuery Top, Best and New Plugins <\/a><\/span><br \/>\n<span class=\"small-text\"><a href=\"https:\/\/codehim.com\/tag\/top-100\/\"> Top 100 jQuery Plugins<\/a><\/span><\/p>\n<\/div>\n<div class=\"d-row\">\n<h2> Plugin Overview<\/h2>\n<table class=\"plugin-overview\">\n<tbody>\n<tr>\n<td><i class=\"fa fa-plug\"><\/i> Plugin:<\/td>\n<td> qrcode <\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-user\"><\/i> Author:<\/td>\n<td> Lars Jung <\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-file-text-o\"><\/i> Licence:<\/td>\n<td><a href=\"https:\/\/opensource.org\/licenses\/MIT\" class=\"external\" target=\"_blank\" rel=\"noopener noreferrer\"> MIT Licence <\/a><\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-calendar-check-o\"><\/i> Published:<\/td>\n<td class=\"publish-date\">January 12, 2024<\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-github\"><\/i>Repository:<\/td>\n<td> <a href=\"https:\/\/github.com\/lrsjng\/jquery-qrcode\" target=\"_blank\" class=\"external\" rel=\"noopener noreferrer\">Fork on GitHub <\/a><\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-link\"><\/i> Dependencies:<\/td>\n<td><a href=\"https:\/\/jquery.com\/download\/\" target=\"_blank\" class=\"external\" rel=\"noopener noreferrer\">jQuery 1.12.4 <\/a> or Latest version and <a href=\"https:\/\/github.com\/kazuhikoarase\/qrcode-generator\" class=\"external\" target=\"_blank\" rel=\"noopener noreferrer\">Java \/ JavaScript qrcode Generator 1.4.3<\/a> or Latest <\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-file-code-o\"><\/i> File Type:<\/td>\n<td>zip archive (HTML, CSS &amp; JavaScript)<\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-file-archive-o\"><\/i> Package Size:<\/td>\n<td>97 KB<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<div class=\"cd-action\"><a class=\"btn demo\" target=\"_blank\" href=\"https:\/\/codehim.com\/demo\/qr-code-generator-with-logo\/\" rel=\"nofollow noopener noreferrer\"> Demo <\/a><a class=\"btn download\" href=\"https:\/\/codehim.com\/download\/qr-code-generator-with-logo.zip\" rel=\"nofollow\"> Download<\/a><\/div>\n<\/div>\n<\/section>\n<div class=\"ad-after-overview\">\n<\/div>\n<h2> How to Use QR code Generator Plugin<\/h2>\n<p>1. Load the jQuery JavaScript library and <strong>QR code generator<\/strong>&#8216;s JavaScript file into your HTML document. <\/p>\n<pre class=\"prettyprint lang-html\">\r\n&lt;!-- jQuery --&gt;\r\n&lt;script src=\"https:\/\/code.jquery.com\/jquery-3.4.0.min.js\"&gt;&lt;\/script&gt;\r\n\r\n&lt;!-- QR Code Generator Js --&gt;\r\n&lt;script src=\"dist\/jquery-qrcode.js\"&gt;&lt;\/script&gt;\r\n<\/pre>\n<p>2. Now, create a container (a <code> div <\/code> element ) with a unique id in which QR code generated.<\/p>\n<pre class=\"prettyprint lang-html\">\r\n&lt;div id=\"myQRCode\"&gt;&lt;\/div&gt;\r\n<\/pre>\n<p>3. After that, initialize the plugin with the QR code&#8217;s attributes and done. <\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({ \r\n    size: 300,\r\n    fill: '#212121',\r\n    text: 'URL goes here',\r\n    mode: 1,\r\n    label: 'Logo Text',\r\n    fontcolor: '#e41b17'\r\n });\r\n<\/pre>\n<p>4. If you want to add image logo into QR code, then set up plugin initialization with the <code> mode: 3<\/code> and add logo image link. The syntax are as follows.<\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n    mode: 3,\r\n    image: \"address-of-image.png\"\r\n });\r\n<\/pre>\n<h2> Advance Configuration Options <small> for QR code Generator <\/small> <\/h2>\n<p>\nThe following are some advance configuration options to create \/ customize &#8220;JavaScript QR code Generator with Logo&#8221;.\n<\/p>\n<table>\n<tr>\n<td><code>render<\/code><\/td>\n<td>\n<p>\nThis option define the rendering type for QR code in which the code will be generated. Default: &#8216;canvas&#8217;, Type: string.  <br \/>\nAvailable Options are: &#8216;canvas&#8217;, &#8216;image&#8217; or &#8216;div&#8217;\n<\/p>\n<p><label class=\"example\">EXAMPLE<\/label>  <\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n   render: 'image',\r\n });\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><code>minVersion<\/code> &#038;<br \/>\n <code> maxVersion<\/code>\n<\/td>\n<td>\n<p>\nDefine the size of minimum and maximum versions of QR code. Default: 1, and 40 respectively. Type: Number.\n<\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n  minVersion: 1,\r\n  maxVersion: 40,\r\n });\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><code>ecLevel<\/code><\/td>\n<td>\n<p>\nDefine the code scanning correction level that can be <b>L<\/b>ow, <b>M<\/b>edium, <b>Q<\/b>uartile and <b>H<\/b>igh. Default: &#8216;L&#8217;, Type: String.<br \/>\n<br \/> Available Options are: &#8216;L&#8217;, &#8216;M&#8217;, &#8216;Q&#8217; or &#8216;H&#8217;\n<\/p>\n<p><label class=\"example\">EXAMPLE<\/label>  <\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n   ecLevel: 'M',\r\n });\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><code>left<\/code> &#038;<br \/>\n<code>  top <\/code> <\/td>\n<td>\n<p>\nDefine the left and top offset for the QR code position. Default: 0, 0 respectively. Type: Number.\n<\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n  left: 0,\r\n  top: 0,\r\n });\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><code size<\/code><\/td>\n<td>\n<p>\nDefine the size of QR code in pixels. Default: 200, Type: Number\n<\/p>\n<p><label class=\"example\">EXAMPLE<\/label>  <\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n   size: 400,\r\n });\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><code> fill<\/code><\/td>\n<td>\n<p>\nDefine the filled color for code. Default: '#000', Type: String. <br \/>\nAvailable Options: HTML Color Codes.\n<\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n   fill: '#444',\r\n });\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><code>background<\/code><\/td>\n<td>\n<p>\nThis option used to define the background color for QR code. Default: null, Type: String.<br \/>\nAvailable Options are: HTML color code.\n<\/p>\n<p><label class=\"example\">EXAMPLE<\/label>  <\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n   background: '##FFFF00', \/\/yellow\r\n });\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><code>radius<\/code><\/td>\n<td>\n<p>\nDefine border radius for <i>QR Code<\/i> in pixels. Default: 0, Type: Number.<\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n   radius: 6,\r\n });\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><code>quiet<\/code><\/td>\n<td>\n<p>\nDefine the quiet zone in modules. Default: 0, Type: Number.<\/p>\n<p><label class=\"example\">EXAMPLE<\/label>  <\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n   quiet: 0,\r\n });\r\n<\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><code>mSize<\/code>,<br \/>\n<code> mPosX<\/code> &<br \/>\n<code> mPosY<\/code>\n<\/td>\n<td>\n<p>\nDefine the postion for QR code. Default: 0.1, 0.5, and 0.5 respectively.\n<\/p>\n<pre class=\"prettyprint lang-js\">\r\n $(\"#myQRCode\").qrcode({\r\n  mSize: 0.1,\r\n  mPosX: 0.5,\r\n  mPosY: 0.5\r\n });\r\n<\/pre>\n<\/td>\n<\/tr>\n<\/table>\n","protected":false},"excerpt":{"rendered":"<p>The &#8220;qrcode&#8221; is a JavaScript QR code generator with logo. The plugin comes with 3 modes (normal, image strip and&#8230;<\/p>\n","protected":false},"author":1,"featured_media":2043,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[56],"tags":[],"class_list":["post-2042","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-others"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>JavaScript QR code Generator with Logo - jQuery qrcode &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Free jQuery JavaScript QR code Generator with Logo and custom label. The qrcode jQuery plugin lets you generate QR codes with text logo.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript QR code Generator with Logo - jQuery qrcode &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Free jQuery JavaScript QR code Generator with Logo and custom label. The qrcode jQuery plugin lets you generate QR codes with text logo.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-12T16:49:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T09:49:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"962\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"JavaScript QR code Generator with Logo &#8211; jQuery qrcode\",\"datePublished\":\"2024-01-12T16:49:00+00:00\",\"dateModified\":\"2024-01-22T09:49:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/\"},\"wordCount\":360,\"commentCount\":10,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg\",\"articleSection\":[\"Others\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/\",\"url\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/\",\"name\":\"JavaScript QR code Generator with Logo - jQuery qrcode &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg\",\"datePublished\":\"2024-01-12T16:49:00+00:00\",\"dateModified\":\"2024-01-22T09:49:52+00:00\",\"description\":\"Free jQuery JavaScript QR code Generator with Logo and custom label. The qrcode jQuery plugin lets you generate QR codes with text logo.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg\",\"width\":1280,\"height\":962,\"caption\":\"JavaScript QR code Generator with Logo - jQuery qrcode\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Others\",\"item\":\"https:\/\/codehim.com\/category\/others\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"JavaScript QR code Generator with Logo &#8211; jQuery qrcode\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"JavaScript QR code Generator with Logo - jQuery qrcode &#8212; CodeHim","description":"Free jQuery JavaScript QR code Generator with Logo and custom label. The qrcode jQuery plugin lets you generate QR codes with text logo.","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:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript QR code Generator with Logo - jQuery qrcode &#8212; CodeHim","og_description":"Free jQuery JavaScript QR code Generator with Logo and custom label. The qrcode jQuery plugin lets you generate QR codes with text logo.","og_url":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-12T16:49:00+00:00","article_modified_time":"2024-01-22T09:49:52+00:00","og_image":[{"width":1280,"height":962,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg","type":"image\/jpeg"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"JavaScript QR code Generator with Logo &#8211; jQuery qrcode","datePublished":"2024-01-12T16:49:00+00:00","dateModified":"2024-01-22T09:49:52+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/"},"wordCount":360,"commentCount":10,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg","articleSection":["Others"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/","url":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/","name":"JavaScript QR code Generator with Logo - jQuery qrcode &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg","datePublished":"2024-01-12T16:49:00+00:00","dateModified":"2024-01-22T09:49:52+00:00","description":"Free jQuery JavaScript QR code Generator with Logo and custom label. The qrcode jQuery plugin lets you generate QR codes with text logo.","breadcrumb":{"@id":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/04\/jquery-qr-code-generator.jpg","width":1280,"height":962,"caption":"JavaScript QR code Generator with Logo - jQuery qrcode"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/others\/javascript-qr-code-generator-with-logo-jquery-qrcode\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Others","item":"https:\/\/codehim.com\/category\/others\/"},{"@type":"ListItem","position":3,"name":"JavaScript QR code Generator with Logo &#8211; jQuery qrcode"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":12637,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/2042","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=2042"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/2042\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/2043"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=2042"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=2042"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=2042"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}