public JSyphonImage newFrameImageForContext() {
HashMap<String, Object> dict = newFrameDataForContext();
Long name = (Long)dict.get("name");
Double width = (Double)dict.get("width");
Double height = (Double)dict.get("height");
return new JSyphonImage(name.intValue(), width.intValue(), height.intValue());
}