public void GenerateBackgroundColor()
        {
            IBackgroundImageService srvc = new BackgroundImage();

            using (var bg = srvc.FilledBackground(MagickColors.Aqua, 400, 200))
            {
                if (!Directory.Exists(path))
                {
                    Directory.CreateDirectory(path);
                }

                bg.Write($"{path}\\magickBG.png");
            }
        }