我正在尝试使用 PythonMagick 从 jpg 图像创建缩略图:
img.quality(90)
# TODO set the sampling algo e.g. bilinear
img.sample(Geometry(scaledWid, scaledHei))
img.crop(Geometry(THUMBNAIL_WID-1, THUMBNAIL_HEI-1,cropLeft, cropTop))
img.write(destFilePath)
如何设置要使用的采样算法?我相信现在它正在使用最近的邻居,这看起来有点难看。