public void ProcessRequest(HttpContext context)
{
context.Response.BinaryWrite(Image2Byte(CreateBitmapImage("Hello World")));
context.Response.Cache.SetCacheability(HttpCacheability.Public);
context.Response.Expires = 100;
}