public void E()
        {
            var source = new MediaSource("35240287", 1125, 1500);

            var transformation = new MediaTransformation(source);

            transformation.Apply(MediaTransformation.ParseTransforms(new[] { "500x500" }));

            transformation.Encode(FormatId.Png);

            Assert.Equal("500x500.png", new MediaRenditionInfo(null, transformation).TransformPath);
        }