You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried other, non-getter methods, and they have worked correctly as far as I can tell. I switched to using the GraphicsMagick flavor of gm, and they are working correctly, but because I want to deploy on Heroku, I am unsure as to whether I will have that package available.
Thank you for your help (and making this awesome package!)
The text was updated successfully, but these errors were encountered:
I downloaded imagemagick using home brew. I just checked it using the command:
brew search imagemagick
And was returned the following two directories:
imagemagick imagemagick-ruby186
I have tried using the ImageMagick flavor of gm with multiple getters, but they don't seem to be working. One example is given below:
imageMagick(image_file).size(function(err, size) {
if(err) {
console.log(err);
}
if(!err) {
console.log(size);
}
});
The following error is printed to the console (same as the errors for the other getter methods):
{ [Error: spawn ENOENT] code: 'ENOENT', errno: 'ENOENT', syscall: 'spawn' }
I have tried other, non-getter methods, and they have worked correctly as far as I can tell. I switched to using the GraphicsMagick flavor of gm, and they are working correctly, but because I want to deploy on Heroku, I am unsure as to whether I will have that package available.
Thank you for your help (and making this awesome package!)
The text was updated successfully, but these errors were encountered: