2010-03-11 6.6.0-5 Cristy <quetzlzacatenango@image...>
* Permit user to get virtual pixels with a region width of 0.
* Reformulate the jinc() functio so that the main peak is of amplitude of 1.
+ * Resampling filter must respect the image virtual pixel method.
2010-03-07 6.6.0-4 Cristy <quetzlzacatenango@image...>
* The -evaluate-sequence option behaves like -evaluate except it operates
(void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
resample_filter->image->filename);
resample_filter->virtual_pixel=method;
- (void) SetCacheViewVirtualPixelMethod(resample_filter->view,method);
+ if (method != UndefinedVirtualPixelMethod)
+ (void) SetCacheViewVirtualPixelMethod(resample_filter->view,method);
return(MagickTrue);
}