Cylinder2Plane in Version 6.5.7

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
eisschwimmer
Posts: 1
Joined: 2012-04-15T06:41:32-07:00
Authentication code: 8675308

Cylinder2Plane in Version 6.5.7

Post 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
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Cylinder2Plane in Version 6.5.7

Post 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>";
}
?>
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Cylinder2Plane in Version 6.5.7

Post 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.
Post Reply