Announcement

Collapse
No announcement yet.

QR-Codes - Cameraphone fun.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    QR-Codes - Cameraphone fun.

    QR Codes are a clever way to get information, into a mobile device, with a camera.

    You generate a code, display it on your site, or print it on a document, then when the user uses their camera to take a picture of it, the information is decoded, and action is taken.

    This action might be:
    - add or dial a phone number
    - go to an URL
    - send an SMS
    - send an email
    - navigate to a GPS location
    - display some text

    that last one is interesting, becasue it means we can use it for things like stock management, and to basically use it any way we want.

    i'm going to show you a clever way to use it, I put together an example that works in any ecommerce cart. in fact, it works on any website.

    paste this code into any page where it will be displayed ONLY ONCE
    HTML Code:
    <div style="padding:20px; clear:both;">
    <a id="qrcodelink" style="cursor: pointer;" onclick="document.getElementById('qrcodelink').style.display='none'; document.getElementById('qrcodeimg').src='http://chart.apis.google.com/chart?chs=150x150&cht=qr&chl='+location.href+'&choe=UTF-8'; document.getElementById('qrcode').style.display='Block'; return false;">QR-Code for this URL</a>
    <div id="qrcode" style="display:none;">
    <img id="qrcodeimg" src="#"><br>
    <a id="qrcodehidelink" style="cursor: pointer;" onclick="document.getElementById('qrcodelink').style.display='Inline'; document.getElementById('qrcode').style.display='none'; return false;">Hide Code</a>
    </div>
    </div>
    when you view the page, you'll get a link. if you click it, the current full url is sent to the google charts API, and creates a QR-Code. You may recognise this code. You'll have seen it on all sorts of promos, posters and packages.

    now, the fun part.

    if your mobile does not support it already (And some do), go here:
    http://reader.kaywa.com/

    and install their software. here is a compatibility list:
    http://reader.kaywa.com/phones

    A QR code reader is free for iphone and android mobiles too.

    use the reader and snapshot the code, it'll give you an option to go to that URL. What we did was, transfer the current page to your mobile. useful for when you want to leave your desk, or if you want to right click, and save the QRCODE for later use, to navigate to that page.

    Need to generate some clever QR codes, for your business card, or your contact page?
    http://zxing.appspot.com/generator/
    This page lets you generate your address too, so people can use their GPS based phones to find you easily.

    I got this working in Actinic with a simple paste of the code. Where will you use it?

    #2
    Very neat. Got the reader working on my iPhone and the generator seems to work great too.
    Now what shall I do with it? mmm

    Comment


      #3
      Originally posted by gabrielcrowe View Post
      I got this working in Actinic with a simple paste of the code. Where will you use it?
      You can get a PC version from here http://www.quickmark.com.tw. 2D codes have been in use in Industry for several years now to record information on component parts to provide traceability, but until recently readers have been very expensive (several hundreds) but the QR version of 2D Code seems to be driving prices down and about time too. Here is another software package, it includes decode/encode sample software but it is more for suitable for techies http://twit88.com/platform/projects/...ssagingtoolkit

      and here is one of my business cards
      Attached Files

      Malcolm

      SellerDeck Accredited Partner,
      SellerDeck 2016 Extensions, and
      Custom Packages

      Comment


        #4
        Q-Air is a good generator for text, URLs, etc which lives on your PC:

        http://www.adobe.com/cfusion/marketp...arketplaceid=1

        Aquazuro - designer stainless steel accessories

        Comment


          #5
          for my example, i used the google api.

          after you can use that, i can see no point in using any other app.

          the adobe air application mentioned uses it.

          Comment


            #6
            i stand corrected, the one here:
            http://www.quickmark.com.tw/En/basic/downloadPC.asp

            is very bloody clever. i like the 'loupe' idea of it.

            Comment

            Working...
            X