aboutsummaryrefslogtreecommitdiffstats
path: root/ws.php
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2011-04-10 08:59:02 +0000
committerpatdenice <patdenice@piwigo.org>2011-04-10 08:59:02 +0000
commit89803639acb3e3a57ed3b6fcbecb4db0d80bde06 (patch)
treedd313ddcdec2bfeb37bd5e94e1f00f09094fd284 /ws.php
parent2d20fe461a795a42bc5216b8f933bf86ee9c7df7 (diff)
feature:2259
Add web service method: pwg.images.resize git-svn-id: http://piwigo.org/svn/trunk@10235 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'ws.php')
-rw-r--r--ws.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/ws.php b/ws.php
index 7bc4dc21c..3d0af18d1 100644
--- a/ws.php
+++ b/ws.php
@@ -403,6 +403,21 @@ function ws_addDefaultMethods( $arr )
),
'activate/deactivate/delete/set_default a theme<br>administration status required'
);
+
+ $service->addMethod(
+ 'pwg.images.resize',
+ 'ws_images_resize',
+ array(
+ 'image_id' => array(),
+ 'type' => array('default' => 'thumbnail'),
+ 'maxwidth' => array('default' => null),
+ 'maxheight' => array('default' => null),
+ 'quality' => array('default' => null),
+ ),
+ 'Regenerate thumbnails or websize photo with given arguments.
+<br>Argument "type" can be "thumbnail" or "websize". Default is "thumbnail".
+<br>If maxwidth, maxheight or quality are missing, default parameters of upload will be used.'
+);
}
add_event_handler('ws_add_methods', 'ws_addDefaultMethods');