```
using (MagickImage image = new MagickImage(filepath))
{
image.Format = MagickFormat.WebP;
image.Write(Response.OutputStream);
image.Dispose();
}
```
Width or height exceeds limit `' @ error/webp.c/WriteWEBPImage/541
image size is 800x29856. very height...
Comments: The WebP format has a limit of 16383 x 16383 (https://developers.google.com/speed/webp/faq#what_is_the_maximum_size_a_webp_image_can_be) and that is why this exception is thrown.
using (MagickImage image = new MagickImage(filepath))
{
image.Format = MagickFormat.WebP;
image.Write(Response.OutputStream);
image.Dispose();
}
```
Width or height exceeds limit `' @ error/webp.c/WriteWEBPImage/541
image size is 800x29856. very height...
Comments: The WebP format has a limit of 16383 x 16383 (https://developers.google.com/speed/webp/faq#what_is_the_maximum_size_a_webp_image_can_be) and that is why this exception is thrown.