Email Authentication Glossary
Logo & SVG
BIMImedium

SVG Logo Dimensions Below 96x96 Pixel Minimum

“SVG logo dimensions below 96x96 pixel minimum” means the checker found numeric root width and height values, but at least one dimension is below Gmail's documented 96-pixel minimum. A file with width

The exact error

SVG logo dimensions below 96x96 pixel minimum

What Does “SVG Logo Dimensions Below 96x96 Pixel Minimum” Mean?

“SVG logo dimensions below 96x96 pixel minimum” means the checker found numeric root width and height values, but at least one dimension is below Gmail's documented 96-pixel minimum. A file with width="96" height="64" still has this condition because both dimensions must meet the minimum.

The 96-pixel threshold is not a universal minimum imposed by SVG Tiny P/S itself.

Why Are the BIMI SVG Dimensions Below 96x96 Pixels?

BIMI SVG dimensions fall below the 96x96-pixel minimum when the root element declares a width or height from 0 through less than 96 pixels. Common examples include square artwork exported as 64 by 64 and nonsquare artwork where only one dimension meets the minimum.

Google documents a minimum height and width of 96 pixels for Gmail BIMI images. Google also requires absolute pixel dimensions and gives width="96" height="96" as its example in its BIMI setup documentation.

How Do You Fix SVG Dimensions Below the 96x96-Pixel Minimum?

Fix SVG dimensions below the 96x96-pixel minimum by setting both root dimensions to absolute pixel values of at least 96. Preserve the intended aspect ratio and keep a valid viewBox so the artwork scales into the new viewport.

This SVG has dimensions below the minimum:

This corrected SVG meets the documented 96-pixel minimum for both dimensions:

After editing the dimensions, validate the complete SVG again. Increasing width and height does not establish that its profile, elements, hosted response or wider BIMI configuration is valid.

IncorrectIncorrect
<svg xmlns="http://www.w3.org/2000/svg" version="1.2" baseProfile="tiny-ps" width="64" height="64" viewBox="0 0 64 64">
  <title>Example Company</title>
  <rect width="64" height="64" fill="#ffffff"/>
  <circle cx="32" cy="32" r="20" fill="#000000"/>
</svg>
CorrectCorrect
<svg xmlns="http://www.w3.org/2000/svg" version="1.2" baseProfile="tiny-ps" width="96" height="96" viewBox="0 0 96 96">
  <title>Example Company</title>
  <rect width="96" height="96" fill="#ffffff"/>
  <circle cx="48" cy="48" r="30" fill="#000000"/>
</svg>

How Does This Differ from Other SVG Dimension Errors?

The below-minimum error concerns numeric pixel dimensions that are present but too small. A non-pixel-dimensions error concerns units such as % or pt, while a missing-dimensions error concerns an absent root attribute.

How Does This Differ from Other SVG Dimension Errors?

Related errorTriggerExample
SVG logo dimensions below 96x96 pixel minimum

A numeric pixel dimension is below 96 — width="64" height="64"

Invalid
SVG logo dimensions use non-pixel values

An existing dimension uses a relative or non-pixel unit — width="100%" height="100%"

Invalid
SVG logo missing width or height attributes

width or height is absent — A root SVG with only viewBox

Invalid

What Should You Check After Increasing the SVG Dimensions?

After increasing the SVG dimensions, check the entire SVG and BIMI configuration. Confirm both dimensions use absolute pixels, both are at least 96, the SVG follows the required profile, the hosted asset is retrievable, DMARC is eligible, and any provider-specific certificate requirements are satisfied.

Correcting the minimum size does not guarantee Gmail logo display because Gmail documents additional image, authentication and certificate requirements.

Key Takeaways

  • At least one numeric root dimension is below 96 pixels.
  • Gmail requires both width and height to be at least 96 pixels.
  • Non-pixel units and missing attributes are separate dimension errors.
  • Meeting the size minimum does not prove the whole BIMI configuration is valid.

Frequently Asked Questions About the 96x96-Pixel Minimum

### Does Only One BIMI SVG Dimension Need to Be at Least 96 Pixels?

No, both BIMI SVG dimensions must be at least 96 pixels for Gmail’s documented minimum. A width of 96 with a height of 64 still falls below the requirement.

### Does Increasing Width and Height to 96 Pixels Guarantee Gmail Will Display the BIMI Logo?

No, increasing both dimensions to 96 pixels does not guarantee Gmail will display the BIMI logo. The size correction addresses one Gmail image requirement, while other SVG, authentication, certificate and receiver-policy requirements still apply.

Check your BIMI record

See exactly which checks your domain passes and fails.

Email Authentication Glossary