Warning, /graphics/libkipi/tests/kipicmd/README is written in an unsupported language. File is not indexed.

0001 kipicmd - Allows you to start kipi-plugins from the command line
0002 
0003 This program can be used to easily start kipi-plugins from the command line
0004 which is useful when developing plugins. You can specify which action of the plugin
0005 should be called and which images/albums should be reported as 'currently selected'.
0006 
0007 Example command flow:
0008 
0009 # list the available plugins and actions:
0010 
0011 kipicmd --listplugins
0012 
0013 # Start the "Edit Coordinates..." action from GPSSync plugin with all jpg files in the current
0014   directory as selected images:
0015 
0016 kipicmd -a "Edit Coordinates..." --selectedimages *.jpg
0017 
0018 # Load only the GPSSync plugin because we know that it is the plugin providing the action we want.
0019   This may speed up loading on older versions of libkipi:
0020 
0021 kipicmd -l kipiplugin_gpssync -a "Edit Coordinates..." --selectedimages *.jpg
0022 
0023 # Run "Export to &HTML..." with 'somedir' as the selected directory and 'dir1' and 'dir2'
0024   as other albums which could be selected:
0025 
0026 kipicmd -a "Export to &HTML..." --selectedalbums somedir --allalbums dir1 dir2
0027 
0028 # Run the "Export to Flick&r..." action. Since the dialog is non-modal, 
0029   we have to wait for it to close:
0030 
0031 kipicmd -a "Export to Flick&r..." --wait --selectedimages *.jpg