diff --git a/src/ImageSharp/Common/Extensions/EncoderExtensions.cs b/src/ImageSharp/Common/Extensions/EncoderExtensions.cs
new file mode 100644
index 0000000000..e6b800e86a
--- /dev/null
+++ b/src/ImageSharp/Common/Extensions/EncoderExtensions.cs
@@ -0,0 +1,34 @@
+// Copyright (c) Six Labors and contributors.
+// Licensed under the Apache License, Version 2.0.
+
+#if !NETCOREAPP2_1
+using System;
+using System.Text;
+
+namespace SixLabors.ImageSharp
+{
+ ///
+ /// Extension methods for the type.
+ ///
+ internal static unsafe class EncoderExtensions
+ {
+ ///
+ /// Gets a string from the provided buffer data.
+ ///
+ /// The encoding.
+ /// The buffer.
+ /// The string.
+ public static string GetString(this Encoding encoding, ReadOnlySpan buffer)
+ {
+#if NETSTANDARD1_1
+ return encoding.GetString(buffer.ToArray());
+#else
+ fixed (byte* bytes = buffer)
+ {
+ return encoding.GetString(bytes, buffer.Length);
+ }
+#endif
+ }
+ }
+}
+#endif
\ No newline at end of file