Different conversion result for .Net and node.js library
Posted: 2019-04-02T03:00:07-07:00
Hi!
I'm trying to reproduce node.js conversion through .Net library, but the result is very different.
original js code - s.flatten().filter('Box').define('filter:blur=0').resize(imageSize, imageSize)
c# code -
I d'not know how to make the results identical. Can somebody help me?
Thanks!
I'm trying to reproduce node.js conversion through .Net library, but the result is very different.
original js code - s.flatten().filter('Box').define('filter:blur=0').resize(imageSize, imageSize)
c# code -
Code: Select all
using (IMagickImage image = images.Flatten())
{
image.FilterType = FilterType.Box;
image.Blur(0);
image.Resize(size, size);
}
Thanks!