• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            brent's hut

            render whole html page

            Ask:
            Hi,
            I'm trying to render the contents of a HTML page hosted in a web
            browser control so that I can save the result as an image.

            There are a number of ways to do this. For example you can use any of
            IHTMLElementRender,­ IViewObject or WM_PRINT. The problem with these
            methods is that you only will receive the portion of the page's content
            that is visible in the web browser. If the page's size is bigger than
            the dimensions of the web browser these hidden or "scrollable" parts
            will not get rendered in the above methods.

            You could resize the browser to fit the entire page but that is not
            feasible in a scenario when a user is using the browser. A second
            approach is to load the page into a second hidden browser which, again,
            is resized to fit the entire page. The problem with this approach is
            that I can't load the document again since it's appearance could
            change. I want to render exactly what's in the user's browser. AFAIK
            there is know easy way to exactly clone a MSHTML document.

            Does anyone (Igor?) have any clues how these "hidden" ares could be
            rendered? Any help much appreciated.

            Regards,
            Christoffer
             
            Answer:
                I took a couple of ideas from Code Project and pieced them together to
            do just this. I render the client area into a small bitmap, blit it
            into a final larger (page size) bitmap and scroll the control to get at
            another area. This was simpler than trying to get it to render into
            the correct area of the page size bitmap.

            This was written for a browser control that was NOT seen by the user so
            I didn't care where the final scroll position was.

            1. From the IHTMLDocument interface call get_body to get the
            IHTMLElement enterface.
            2. Get the IHTMLElement2 interface (pBody2 in the code).
            3. Call get_scrollHeight and get_scrollWidth, get_clientWidth,
            get_clientHeight.
            4. Get the IHTMLElementRender interface (pRenderer in the code).
            5. Create a bitmap the size of the client area and select it into a
            clientDC.
            6. Create a bitmap the size of the scroll area and select it into a
            pageDC.
            7. Use some code like the following to scroll and render the page:

            long x = scrollWidth;
            long lastX = -1;
            bool doneX = false;
            while (!doneX)
            {
                pBody2->put_scrollLeft(x);
                pBody2->get_scrollLeft(&x);
                if (-1 == lastX)
                lastX = x + clientWidth;
                long y = scrollHeight;
                long lastY = -1;
                bool doneY = false;
                while (!doneY)
                {
                    pBody2->put_scrollTop(y);
                    pBody2->get_scrollTop(&y);
                    if (-1 == lastY)
                    lastY = y + clientHeight;
                    hr = pRenderer->DrawToDC­(clientDC);
                    BitBlt(pageDC,x,y,lastX-x,lastY-y,clientDC,2,2,SRCCOPY);
                    doneY = (y==0);
                    lastY = y;
                    y -= clientHeight-4;
                }
                doneX = (0==x);
                lastX = x;
                x -= clientWidth-4;
            }

            The pageDC bitmap now holds the full image of the page and you can save
            it or do anything else you want. You'll note that what I'm doing is
            trying to scroll too far and letting IE scroll appropriately. Also
            note that I clip a 2 pixel edge when blitting. This is from actual
            testing - needed to not clip the border of the control.

            Hope this helps,

            David Stidolph
            Austin, TX

            Ask:
                Thanks for the solution, but it will unfortunately not work in my case
            because the control is used by a user and can therefor not be scrolled
            programmatically.

            My focus now is on trying to clone the MSHTML document and then load
            the clone in another hidden browser contol which I can resize to fit
            the entire page and then do the rendering. The way I'm currently
            cloning the document is saving the HTML to disk and then replacing all
            references (images, .js, .css., ...) in the HTML document with local
            ones which I have downloaded from the originating server (will do this
            as a last resort), the cache or (in the cases where it's possible)
            copied directly from the MSHTML document. When that is done I have a
            local copy which a can browse to. Does anyone know of a better way to
            clone a MSHTML document?

            Answer:
                How about using a LockWindowUpdate call before the snapshot and
            then unlocking it after? That way, the user never knows the WB
            scrolled.

            posted on 2007-10-11 23:57 brent 閱讀(1240) 評論(0)  編輯 收藏 引用 所屬分類: C++Web

            久久久久亚洲AV成人片| 97精品依人久久久大香线蕉97| 久久国产精品无码HDAV| 久久精品国产91久久综合麻豆自制| 青青草原综合久久| 亚洲精品第一综合99久久| 久久久噜噜噜久久中文福利| 久久精品国产影库免费看 | 亚洲国产成人精品女人久久久| 色综合久久中文字幕综合网| 亚洲国产美女精品久久久久∴| 久久se这里只有精品| 一本一本久久aa综合精品| 7国产欧美日韩综合天堂中文久久久久| 国产亚州精品女人久久久久久 | 亚洲综合精品香蕉久久网| 久久综合狠狠综合久久激情 | 久久精品极品盛宴观看| 精品久久久久久久久久久久久久久 | 国产ww久久久久久久久久| 亚洲va久久久噜噜噜久久男同| 国产精品免费久久久久影院| 欧美大香线蕉线伊人久久| 久久九色综合九色99伊人| 国产精品久久永久免费| 久久99国内精品自在现线| 久久夜色精品国产亚洲| 伊人久久五月天| 久久国产香蕉视频| 亚洲一区中文字幕久久| 97久久国产亚洲精品超碰热| 久久天堂AV综合合色蜜桃网| 亚洲色欲久久久综合网东京热 | 人人狠狠综合久久88成人| 国产毛片欧美毛片久久久 | 午夜精品久久久久久影视777| 国产成人精品综合久久久| 国产福利电影一区二区三区久久久久成人精品综合 | 久久精品国产久精国产果冻传媒| 无码乱码观看精品久久| 欧美午夜A∨大片久久|