public override Image ProcessImage(Image image)
		{
			AutoResetEvent resultEvent = new AutoResetEvent(false);
			IEBrowser browser = new IEBrowser(Url, Ratio, resultEvent);
			WaitHandle.WaitAll(new[] { resultEvent });
			return browser.Thumb;
		}
Esempio n. 2
0
        public override Image ProcessImage(Image image)
        {
            AutoResetEvent resultEvent = new AutoResetEvent(false);
            IEBrowser      browser     = new IEBrowser(Url, Ratio, resultEvent);

            WaitHandle.WaitAll(new[] { resultEvent });
            return(browser.Thumb);
        }