BIMI requires a specific SVG format called SVG Tiny Portable/Secure (SVG Tiny PS). This guide will help you create or convert your logo to meet BIMI specifications.
viewBox="0 0 100 100"
viewBox="0, 0, 100, 100"
⚠️ Important for Gmail:
Gmail displays logos in circular frames. Ensure your logo looks good when cropped to a circle!
<script>
tags<?xml version="1.0" encoding="UTF-8"?> <svg version="1.2" baseProfile="tiny-ps" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <title>Company Logo</title> <rect width="100" height="100" fill="#ffffff"/> <circle cx="50" cy="50" r="40" fill="#0066cc"/> <path d="M 35 50 L 45 60 L 65 40" fill="none" stroke="#ffffff" stroke-width="4"/> </svg>
Key features of this example: