diff --git a/src/ImageSharp/Formats/DensityUnits.cs b/src/ImageSharp/Formats/DensityUnits.cs
new file mode 100644
index 000000000..ce30bd06c
--- /dev/null
+++ b/src/ImageSharp/Formats/DensityUnits.cs
@@ -0,0 +1,26 @@
+// Copyright (c) Six Labors and contributors.
+// Licensed under the Apache License, Version 2.0.
+
+namespace SixLabors.ImageSharp.Formats
+{
+ ///
+ /// Provides enumeration of available pixel density units.
+ ///
+ public enum DensityUnits : byte
+ {
+ ///
+ /// No units; width:height pixel aspect ratio = Ydensity:Xdensity
+ ///
+ AspectRatio = 0,
+
+ ///
+ /// Pixels per inch (2.54 cm)
+ ///
+ PixelsPerInch = 1, // Other image formats would default to this.
+
+ ///
+ /// Pixels per centimeter.
+ ///
+ PixelsPerCentimeter = 2
+ }
+}