QR Code possible data types or standards

后端 未结 3 1549
春和景丽
春和景丽 2020-11-30 06:47

I am developing an iOS Application for scanning QR Codes. I am successfully able to scan and get code from QR code.

Question:

My question is

相关标签:
3条回答
  • 2020-11-30 07:15

    Github - Zxing (Barcode Contents) has a summary.

    There may or may not be a standard.

    If you are looking for non-standard formats,

    please update your documentation and contribute to open source.

    0 讨论(0)
  • 2020-11-30 07:24

    Basically your text information has to be identifiable for what it is:

    There is a very good summary here.

    1. Contact data - use MeCard, or vCard (much more verbose), e.g.: MECARD:Surname, First;ADR:123 Some St., Town, Zip Code, Country;EMAIL:some_name@some_ip.com;TEL:+11800123123;BDAY:19550231;; Gives: ExampleMeCard

    2. Calendar data - No standard seems to be set yet

    3. URL: Start your url with the standard format specifier such as http://, e.g.: http://stackoverflow.com/questions/19900835/qr-code-possible-data-types-or-standards Gives: ExampleUrl

    4. Email address - Start with mailto:SomeOne@SomeWhere.org gives: Example Mail To

    5. Phone number - Start with tel: e.g. tel:+1-212-555-1212 gives: Example Tel No

    6. SMS - See the RFC 5724.

    7. Plain text - Just include the text. Example Text
    8. Geo location - Use the geo:lat,long,alt format URI: geo:40.71872,-73.98905,100 (100 feet above Googles offices) gives: Example Geolocation
    9. WIFI - (ssid is 'abc' and password is '1234'). For WEP encryption: WIFI:S:abc;T:WEP;P:1234;;. For WPA/WPA2: WIFI:S:abc;T:WPA;P:1234;;. Without encryption: WIFI:S:abc;T:nopass;P:1234;;.

    All the above example were generated with the Python qrcode package from the command line.

    0 讨论(0)
  • 2020-11-30 07:39

    Basically, QR Code returns text data that can be of any type. You can put any type of data in any string format in QR Code. It totally depends on you. You can consider it as
    [NSString stringWithFormat].

    0 讨论(0)
提交回复
热议问题