// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageSharp { using System; using System.IO; using Formats; /// /// Extension methods for the type. /// public static partial class ConfigurationExtensions { /// /// Adds the Gif format. /// /// The config. /// The config public static Configuration AddGifFormat(this Configuration config) { config.AddImageFormat(new GifFormat()); return config; } } }