Page 1 of 1
Cylinder2Plane in Version 6.5.7
Posted: 2012-04-15T06:54:28-07:00
by eisschwimmer
Where can I find an overview, which functions are new.
On my Host-Server ist the version: ImageMagick 6.5.7-8 2010-12-02 Q16
But this doesn't work:
convert 01.jpg -virtual-pixel White +distort Cylinder2Plane 90.467 02.jpg
other functions like:
01.jpg -virtual-pixel White -distort barrel "0.15 0.15 0.0 0.7 100 100" 02.jpg
work well
Thank you for Help
Re: Cylinder2Plane in Version 6.5.7
Posted: 2012-04-15T07:31:10-07:00
by Bonzo
As you are on a server put the code below into a php file and navigate to that file on your server.
It should give you all your Imagemagick details along with the php.ini file details. For security remove from the server when finished.
Code: Select all
<?php
system("type convert");
echo "<br>";
system("convert -version");
echo "<br>";
echo "<pre>";
system("convert -LIB_VERSION_NUMBER");
system('which convert',$path); print_r($path);
echo "</pre>";
phpinfo();
// Build the array of items to be used
exec("convert convert -list list", $IMarray, $code);
// Start the loop to find and display the results
foreach ($IMarray as $value) {
echo "<br>system (\"convert -list $value\")";
echo "<pre>";
system("convert -list $value");
echo "</pre><hr>";
}
?>
Re: Cylinder2Plane in Version 6.5.7
Posted: 2012-04-15T11:33:04-07:00
by fmw42
see the changelog at
http://www.imagemagick.org/script/changelog.php
2011-06-14 6.7.0-8 Anthony Thyssen <A.Thyssen@griffith...>
Added Initial implementation of Cylinder to/from Plane 3D Distorts Includes derivative (scaled lookup), and anti-aliased horizon (validity) Currently can NOT handle extractions from full 360 cylinder panoramas.