SoC 2006: Imagemagick

This is a SOC imagemagick group. DIscussions related to the Imagemagick integration will be held here

2 weeks to go; what's your status?

robertDouglass's picture
public
robertDouglass - Wed, 2006-08-09 21:17

We should be seeing a mostly finished product by now. Please report on your status.


2 weeks to go; what's your status?

robertDouglass's picture
public
robertDouglass - Wed, 2006-08-09 21:17

We should be seeing a mostly finished product by now. Please report on your status.


Imagemagick Api calls

arava_phani's picture
public
arava_phani - Tue, 2006-07-04 13:16

Single Function call:

<?php
function image_imagemagick2_resize($source,$dest,$width,$height){
$convobj=new stdClass();
  
$convobj->source=$source;
  
$convobj->dest=$dest;
  
$convobj->functioncall='resize';
 
$convobj->params=array('width'=>$width,'height'=>$height);
    return
image_imagemagick2_convert($convobj);
}
?>

Multiple functions call:

<?php
function image_imagemagick2_resize_and_flip($source,$dest,$width,$height){
$convobj=new stdClass();
$convob->multiple = TRUE;
$convobj->source=$source;
$convobj->dest=$dest;
$convobj->functioncall=array('resize','flip');


Imagemagick Api calls

arava_phani's picture
public
arava_phani - Tue, 2006-07-04 13:16

Single Function call:

<?php
function image_imagemagick2_resize($source,$dest,$width,$height){
$convobj=new stdClass();
  
$convobj->source=$source;
  
$convobj->dest=$dest;
  
$convobj->functioncall='resize';
 
$convobj->params=array('width'=>$width,'height'=>$height);
    return
image_imagemagick2_convert($convobj);
}
?>

Multiple functions call:

<?php
function image_imagemagick2_resize_and_flip($source,$dest,$width,$height){
$convobj=new stdClass();
$convob->multiple = TRUE;
$convobj->source=$source;
$convobj->dest=$dest;
$convobj->functioncall=array('resize','flip');


Conjuring API

Heine's picture
public
Heine - Tue, 2006-07-04 12:09

ImageMagick integration for Drupal

from http://drupal.org/node/61133

  • Become familiar with the following items: Imagemagick, File API, Image API , Form API
  • Identify x image manipulation actions that could be automated.
  • Identify what processes are required, and how to accomplish them using ImageMagick.
  • Develop functions for each of the operations, clearly documenting their use and parameters.
  • Develop a hook that allows a developer to define 'effects', by specifying a series of operations
    to be called on an image, and a set of parameters.

Conjuring API

Heine's picture
public
Heine - Tue, 2006-07-04 12:09

ImageMagick integration for Drupal

from http://drupal.org/node/61133

  • Become familiar with the following items: Imagemagick, File API, Image API , Form API
  • Identify x image manipulation actions that could be automated.
  • Identify what processes are required, and how to accomplish them using ImageMagick.
  • Develop functions for each of the operations, clearly documenting their use and parameters.
  • Develop a hook that allows a developer to define 'effects', by specifying a series of operations
    to be called on an image, and a set of parameters.

Imagemagick Project

arava_phani's picture
public
arava_phani - Mon, 2006-07-03 03:30

Project intial code released.

Code contains:

imagemagick2.inc (contains the library wrapper of imagemagick)

--> integrated with image.module (Another Image Handling toolkit)

Link to the project: http://drupal.org/project/imagemagick


Imagemagick Project

arava_phani's picture
public
arava_phani - Mon, 2006-07-03 03:30

Project intial code released.

Code contains:

imagemagick2.inc (contains the library wrapper of imagemagick)

--> integrated with image.module (Another Image Handling toolkit)

Link to the project: http://drupal.org/project/imagemagick


Great to see a group!

robertDouglass's picture
public
robertDouglass - Thu, 2006-06-29 06:13

Could you also pleas provide links to any external resources related to this project, such as the Project page on drupal.org, and any blog or wiki material that you may have written elsewhere? Thanks!


Great to see a group!

robertDouglass's picture
public
robertDouglass - Thu, 2006-06-29 06:13

Could you also pleas provide links to any external resources related to this project, such as the Project page on drupal.org, and any blog or wiki material that you may have written elsewhere? Thanks!


Syndicate content