1
我需要將圖像繪製到從.svg獲取的畫布上。 我目前使用下面的代碼:如何從.svg圖像獲取調整大小的ImageElement?
active_toolbutton = query("#${event.target.id}").clone(false);
active_toolbutton.width = 100;
active_toolbutton.height = 100;
context.drawImageScaled(active_toolbutton, placeX, placeY,
active_toolbutton.width, active_toolbutton.height);
這與Chrome,但不能在Firefox的工作,有沒有更好的辦法做到這一點?
這聽起來像飛鏢的錯誤:HTML。請填寫以下所有詳細信息:www.dartbug.com/new – 2013-04-20 20:52:58
完成,https://code.google.com/p/dart/issues/detail?id=10076。 – 2013-04-20 21:22:58
我從來沒有聽說過'context.drawImageScaled'。 'context.drawImage'確實是你想要的,並採用相同的參數?也許這是通過飛鏢的東西? – 2013-04-22 01:37:40