We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my ruby code I'm just using this " require 'RMagick'
clown = Magick::Image.read("clown.jpg").first clown.scale(125,125) clown.write('crop_resized.jpg') "
But the outputted image is the same size.
Help me!
Regards Joshua
The text was updated successfully, but these errors were encountered:
Surely you mean clown = clown.scale(125,125). If you don't capture the scaled output, you're just throwing it away.
Sorry, something went wrong.
I'm an idiot!
No branches or pull requests
In my ruby code I'm just using this
"
require 'RMagick'
clown = Magick::Image.read("clown.jpg").first
clown.scale(125,125)
clown.write('crop_resized.jpg')
"
But the outputted image is the same size.
Help me!
Regards Joshua
The text was updated successfully, but these errors were encountered: