日期:2014-05-17  浏览次数:20424 次

获取跳转网址问题,100分问题未解决
100分的问题:
http://bbs.csdn.net/topics/390426448

这个问题看似简单,实际上不简单(至少对我这个菜鸟来说很难)。
请求大侠们把实现代码贴出来,谢谢。

两边都回复下,我好给分

------解决方案--------------------
可以结贴给分了

    public class GHtmlToImage
    {
        /// <summary>
        /// 地址
        /// </summary>
        private string _url = "about:blank";
        /// <summary>
        /// 宽
        /// </summary>
        private int _width = 800;
        /// <summary>
        /// 高
        /// </summary>
        private int _height = 600;
        /// <summary>
        /// 缩略图宽
        /// </summary>
        private int _swidth = 320;
        /// <summary>
        /// 缩略图高
        /// </summary>
        private int _sheight = 250;

        private Bitmap _image;
        private Bitmap _thumbnailimage;
        private object _lock = new object();
        private object _lock2 = new object();
        private string _charset = "utf-8";
        public string Url
        {
            set { _url = value; }
        }
        public int Width
        {
            set { _width = value; }
        }
        public int Height
        {
            set { _height = value; }
        }
        public int SWidth
        {
            set { _swidth = value; }
        }