Sometimes resizing an image can add a black border to the output, example (images attached):
```
new WebImage("original.jpg").Resize(180, 180).Save("output.jpg");
```
A possible fix is in System.Web.Helpers/WebImage.cs:
```
private static Bitmap GetBitmapFromImage(Image image, int width, int height, bool preserveResolution = true)
{
....
+ bitmap.MakeTransparent();
```
Comments: We are not planning on fixing this due to low demand.
```
new WebImage("original.jpg").Resize(180, 180).Save("output.jpg");
```
A possible fix is in System.Web.Helpers/WebImage.cs:
```
private static Bitmap GetBitmapFromImage(Image image, int width, int height, bool preserveResolution = true)
{
....
+ bitmap.MakeTransparent();
```
Comments: We are not planning on fixing this due to low demand.