Closed haydenbleasel closed 10 years ago
Thanks for reporting! I would suspect that this might be an issue with the specific image your are dealing with. Could you provide the source for the whole task and maybe even share a sample image?
Actually I just found out what it was. gulp.spritesmith was creating an empty image file as it had no valid source files and gulp-gm
was exploding because of it. You were correct :) Sorry about that, and thanks for your help!
Glad I could help :-)
These are actually errors with
gulp-image-resize
, however I believe the actual problem lies withgulp-gm
(and I can't open issues on a forked repository anyway). While running thegulp-image-resize
task on this Gulpfile, the following error is thrown:If I change the configuration from
imageResize({ width: 992, upscale: false })
toimageResize({ width: 992, upscale: false, imageMagick: true })
, a different error appears:Note: ImageMagick and GraphicsMagick are installed through Brew. Thanks!