public void AddImage(NSImage image, QTTime forDuration, QTImageAttributes attributes)
 {
     if (attributes == null)
     {
         throw new ArgumentNullException("attributes");
     }
     AddImage(image, forDuration, attributes.ToDictionary());
 }
		public void AddImage (NSImage image, QTTime forDuration, QTImageAttributes attributes)
		{
			if (attributes == null)
				throw new ArgumentNullException ("attributes");
			AddImage (image, forDuration, attributes.ToDictionary ());
		}