diff options
author | Muthu Subramanian <sumuthu@suse.com> | 2013-07-17 12:59:40 +0530 |
---|---|---|
committer | Muthu Subramanian <sumuthu@suse.com> | 2013-07-17 13:02:07 +0530 |
commit | 8b716072410bcfd252739fb953d5ac198e27a895 (patch) | |
tree | 64c119dbc0db723bce6a205aaf8f189a128f7415 /offapi | |
parent | 09fb28de3b29c426afa4c37e36268e883aa55923 (diff) |
n#820077: Import images with duotone filter.
Also, contains implementation for a simple duotone filter.
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/graphic/XGraphicTransformer.idl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/offapi/com/sun/star/graphic/XGraphicTransformer.idl b/offapi/com/sun/star/graphic/XGraphicTransformer.idl index 11b2896967a3..d1a6ddf00cb6 100644 --- a/offapi/com/sun/star/graphic/XGraphicTransformer.idl +++ b/offapi/com/sun/star/graphic/XGraphicTransformer.idl @@ -42,6 +42,15 @@ interface XGraphicTransformer : ::com::sun::star::uno::XInterface com::sun::star::graphic::XGraphic colorChange( [ in ] com::sun::star::graphic::XGraphic In, [ in ] long ColorFrom, [ in ] byte tolerance, [ in ] long ColorTo, [ in ] byte AlphaTo ) raises( ::com::sun::star::lang::IllegalArgumentException ); + + /** applies Duotone effect + + @returns + The modified graphic + */ + com::sun::star::graphic::XGraphic applyDuotone( [ in ] com::sun::star::graphic::XGraphic In, + [ in ] long ColorOne, [ in ] long ColorTwo ) + raises( ::com::sun::star::lang::IllegalArgumentException ); }; } ; } ; } ; } ; |