Project

General

Profile

Support #249

Updated by Daniel Curtis over 10 years ago

A vCard, or .vcf, file is a plain text file: 
 <pre> 
 BEGIN:VCARD 
 VERSION:3.0 
 EMAIL;TYPE=HOME:joeguy@example.com 
 N:Guy;Joe;;; 
 FN:Joe Guy 
 TEL;TYPE=CELL:(555) 555-5554 
 ORG: Someone Corps ORG:GNet Cyber Solutions 
 TITLE:Some Guy TITLE:IT Administrator 
 URL;TYPE=WORK:http://example.com URL;TYPE=WORK:http://gnetsolutions.net 
 END:VCARD 
 </pre> 

 To convert it into a QR image, first install qrencode: 
 <pre> 
 sudo apt-get install qrencode 
 </pre> 

 Next convert the file to a QR code PNG: 
 <pre> 
 cat JoeGuy.vcf | qrencode -o JoeGuy.png 
 </pre>

Back