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.img.Image; 007 import railo.runtime.op.Caster; 008 009 public class ImageGetIPTCTag { 010 011 public static Object call(PageContext pc, Object name, String tagName) throws PageException { 012 if(name instanceof String) name=pc.getVariable(Caster.toString(name)); 013 Image img = Image.toImage(name); 014 015 throw new ExpressionException("method ImageGetIPTCTag not implemented yet"); 016 } 017 018 }