258c258 < index fb3269c..b7a5b67 100644 --- > index 60d0057..fe5e97a 100644 265,266c265,266 < - public static $modules = array('image_test'); < + public static $modules = array('image_test', 'image'); --- > - public static $modules = array('image_test', 'image_module_test'); > + public static $modules = array('image', 'image_test', 'image_module_test'); 659c659 < index 0000000..21a1d07 --- > index 0000000..6b59d54 662c662 < @@ -0,0 +1,156 @@ --- > @@ -0,0 +1,157 @@ 670a671 > + 682c683 < + * Retrieve toolkit's settings form. --- > + * Retrieves toolkit's settings form. 689c690 < + * Form submission handler for toolkit's settings form. --- > + * Handles submissions for toolkit's settings form. 696c697 < + * Scale an image to the specified size. --- > + * Scales an image to the specified size. 713c714 < + * Rotate an image the given number of degrees. --- > + * Rotates an image the given number of degrees. 734c735 < + * Crop an image. --- > + * Crops an image. 755c756 < + * Convert an image resource to grayscale. --- > + * Converts an image resource to grayscale. 769c770 < + * Create an image resource from a file. --- > + * Creates an image resource from a file. 781c782 < + * Write an image resource to a destination file. --- > + * Writes an image resource to a destination file. 795c796 < + * Get details about an image. --- > + * Gets details about an image. 812c813 < + * Verify Image Toolkit is set up correctly. --- > + * Verifies Image Toolkit is set up correctly. 821c822 < index 0000000..d801de0 --- > index 0000000..d40b756 824c825 < @@ -0,0 +1,24 @@ --- > @@ -0,0 +1,26 @@ 842a844,846 > + /** > + * Contructs the ImageToolkitManager object. > + */ 844d847 < + //$this->discovery = new HookDiscovery('image_toolkits'); 851c854 < index 0000000..3556fc1 --- > index 0000000..8fdfcfb 854c857 < @@ -0,0 +1,296 @@ --- > @@ -0,0 +1,297 @@ 1096c1099 < + * Create a truecolor image preserving transparency from a provided image. --- > + * Creates a truecolor image preserving transparency from a provided image. 1103a1107 > + * 1211c1215 < index 2bf4343..b4470b7 100644 --- > index 2bf4343..3a0c7db 100644 1244,1245c1248,1249 < + // If we have avialable toolkits allow the user to select the image toolkit to < + // use and load their settings forms. --- > + // If we have available toolkits allow the user to select the image toolkit to > + // use and load the settings forms. 1312c1316 < index 486afba..4021e52 100644 --- > index ac983aa..3a068fd 100644 1315c1319 < @@ -1884,6 +1884,19 @@ function system_update_8019() { --- > @@ -1894,6 +1894,19 @@ function system_update_8019() { 1336c1340 < index ad4c5dd..6410f27 100644 --- > index 922b8a7..79749a8 100644 1339c1343 < @@ -3839,19 +3839,6 @@ function theme_system_compact_link() { --- > @@ -3840,19 +3840,6 @@ function theme_system_compact_link() { 1388c1392 < index 0000000..90ce5e1 --- > index 0000000..e396b21 1391c1395 < @@ -0,0 +1,29 @@ --- > @@ -0,0 +1,30 @@ 1413a1418 > + 1423c1428 < index 0000000..0357311 --- > index 0000000..8aee0f5 1525c1530 < + * Store the values passed to a toolkit call. --- > + * Stores the values passed to a toolkit call.