[SOLVED] How to find a list of methods(?)/operations in my version of Image::Magick?
Posted: 2019-09-18T11:55:15-07:00
I've been scratching out a Perl program using the Image::Magick module and have been proceeding, essentially, by finding and adapting small examples.
I'm running Perl5 on Ubuntu 18.04, and I believe my I::M module is ($image->Get('version')):
Version: ImageMagick 6.9.7-4 Q16 x86_64 20170114
Most recently, I tried to call a SetPixels() method, only to be informed:
"Can't locate auto/Image/Magick/SetPixels.al in @INC"
My questions:
1. How, inside a Perl/.pl script, to ask Image::Magick to display its list of accessible methods?
2. How, outside of Perl scripts, to find the I::M module (or related--something about "autoloading"?) and search it for a list of public methods?
and, I guess,
3. How can I get SetPixels() in my setup?
Thank you.
I'm running Perl5 on Ubuntu 18.04, and I believe my I::M module is ($image->Get('version')):
Version: ImageMagick 6.9.7-4 Q16 x86_64 20170114
Most recently, I tried to call a SetPixels() method, only to be informed:
"Can't locate auto/Image/Magick/SetPixels.al in @INC"
My questions:
1. How, inside a Perl/.pl script, to ask Image::Magick to display its list of accessible methods?
2. How, outside of Perl scripts, to find the I::M module (or related--something about "autoloading"?) and search it for a list of public methods?
and, I guess,
3. How can I get SetPixels() in my setup?
Thank you.