我正在使用CollectionFS和GraphicsMagick并调整PNG大小会导致文件损坏(零KB)。 JPG和GIF工作正常。
transformWrite: function(fileObj, readStream, writeStream) {
// Transform the image into a 64x64px thumbnail
gm(readStream, fileObj.name()).resize('64', '64').stream().pipe(writeStream);
}
知道这是一个错误还是我错过了什么?谢谢! :)