Commit 498284be authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

печать картинок в экселе, с srcRect

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57321 954022d7-b5bf-4e40-9824-e11837661b57
parent 01bc9501
......@@ -1632,10 +1632,20 @@ CDocumentRenderer.prototype =
this.m_arrayPages[this.m_lPagesCount - 1].drawImage(img,x,y,w,h);
else
{
/*
if (!window.editor)
this.m_arrayPages[this.m_lPagesCount - 1].drawImage(img,x,y,w,h);
{
this.m_arrayPages[this.m_lPagesCount - 1].drawImage(img,x,y,w,h);
return;
}
*/
var _img = undefined;
if (window.editor)
_img = window.editor.ImageLoader.map_image_index[img];
else if (window["Asc"]["editor"])
_img = window["Asc"]["editor"].ImageLoader.map_image_index[img];
var _img = window.editor.ImageLoader.map_image_index[img];
var w0 = 0;
var h0 = 0;
if (_img != undefined && _img.Image != null)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment