I'm unable to resample my image by resolution. Ex.
```
using (var image = new MagickImage(_in))
{
FilterType type; Enum.TryParse(_filter, true, out type);
image.FilterType = FilterType.Lanczos.;
image.Resample(500, 500);
image.Write(_out);
}
```
Comments: ** Comment from web user: dlemstra **
```
using (var image = new MagickImage(_in))
{
FilterType type; Enum.TryParse(_filter, true, out type);
image.FilterType = FilterType.Lanczos.;
image.Resample(500, 500);
image.Write(_out);
}
```
Comments: ** Comment from web user: dlemstra **
Can you be a bit more specific? What are you expecting and what is happening?
Can you attach the image that fails to do what you are expecting?
Are you using the latest version of Magick.NET?