Skip to content
Novus Examples
vcf310 B

Business Card — vCard (.vcf)

The vCard (.vcf) ground truth for the business-card image — the same name, title, company, email, phone, and address in structured form. The positive reference for testing OCR-to-contact extraction.

Preview — first 12 linesvcf
BEGIN:VCARD
VERSION:3.0
FN:Jordan Rivera
N:Rivera;Jordan;;;
ORG:Meridian Supply Co.
TITLE:Account Manager
EMAIL;TYPE=work:jordan@meridiansupply.example
TEL;TYPE=work,voice:+1-555-010-0142
ADR;TYPE=work:;;18 Market Street;Portland;OR;97201;USA
URL:https://meridiansupply.example
END:VCARD

Specifications

Format
vCard 3.0
Fields
FN, N, ORG, TITLE, EMAIL, TEL, ADR, URL
Note
ground truth for the card image

What is a .vcf file?

VCF (vCard) is a plain-text format for electronic business cards, storing contact details like names, phone numbers, emails, and addresses as property lines within BEGIN and END VCARD blocks. Multiple vCards can be concatenated in one file. It is the standard for contact exchange across devices.

How to use this file

Use an example VCF to test contact import, multi-card parsing, property and encoding handling, and interoperability between address-book applications.

Code examples

import vobject  # pip install vobject

for card in vobject.readComponents(open("business-card.vcf").read()):
    print(card.fn.value)

Generated by generation/images_realworld.py. Free for any use, no attribution required — license.