001    package railo.runtime.functions.image;
002    
003    import railo.runtime.PageContext;
004    import railo.runtime.exp.ExpressionException;
005    import railo.runtime.exp.PageException;
006    import railo.runtime.op.Caster;
007    
008    public class ImageGetIPTCTag {
009    
010            public static Object call(PageContext pc, Object name, String tagName) throws PageException {
011                    if(name instanceof String) name=pc.getVariable(Caster.toString(name));
012                    //Image img = Image.toImage(name);
013                    
014                    throw new ExpressionException("method ImageGetIPTCTag not implemented yet");
015            }
016            
017    }