<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://www.w3.org/Bugs/Public/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4"
          urlbase="https://www.w3.org/Bugs/Public/"
          
          maintainer="sysbot+bugzilla@w3.org"
>

    <bug>
          <bug_id>11566</bug_id>
          
          <creation_ts>2010-12-17 05:14:54 +0000</creation_ts>
          <short_desc>Image should have getContext(...) just like canvas</short_desc>
          <delta_ts>2011-08-04 05:01:56 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>HTML WG</product>
          <component>LC1 HTML5 spec</component>
          <version>unspecified</version>
          <rep_platform>PC</rep_platform>
          <op_sys>Windows NT</op_sys>
          <bug_status>CLOSED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Sirisian">warcraftthreeft</reporter>
          <assigned_to name="Ian &apos;Hixie&apos; Hickson">ian</assigned_to>
          <cc>ian</cc>
    
    <cc>mike</cc>
    
    <cc>public-html-admin</cc>
    
    <cc>public-html-wg-issue-tracking</cc>
          
          <qa_contact name="HTML WG Bugzilla archive list">public-html-bugzilla</qa_contact>

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>43446</commentid>
    <comment_count>0</comment_count>
    <who name="Sirisian">warcraftthreeft</who>
    <bug_when>2010-12-17 05:14:54 +0000</bug_when>
    <thetext>This would remove the problem of having to generate new canvases and render an image to them to do trivial operations like getting the ImageData.

var image = new Image();
var imageData;
image.onload = function()
{
	imageData = image.getContext(&quot;2d&quot;).getImageData(0, 0, image.width, image.height);
}
image.src = &quot;example.png&quot;;

http://www.w3.org/TR/html5/embedded-content-1.html#the-img-element</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>44187</commentid>
    <comment_count>1</comment_count>
    <who name="Ian &apos;Hixie&apos; Hickson">ian</who>
    <bug_when>2011-01-11 19:19:01 +0000</bug_when>
    <thetext>EDITOR&apos;S RESPONSE: This is an Editor&apos;s Response to your comment. If you are satisfied with this response, please change the state of this bug to CLOSED. If you have additional information and would like the editor to reconsider, please reopen this bug. If you would like to escalate the issue to the full HTML Working Group, please add the TrackerRequest keyword to this bug, and suggest title and text for the tracker issue; or you may create a tracker issue yourself, if you are able to do so. For more details, see this document:
   http://dev.w3.org/html5/decision-policy/decision-policy.html

Status: Partially Accepted
Change Description: none yet
Rationale: We&apos;ll probably add a way to get image data straight from a same-origin image in a future version (it&apos;s a little late in the cycle to add features right now), so I&apos;ve marked this LATER.

In the meantime, though, why is &quot;having to generate new canvases&quot; a problem? It&apos;s only five extra lines of code, which are easily put into a utility function and forgotten:

image.onload = function()
{
    var canvas = document.createElement(&apos;canvas&apos;);
    canvas.width = image.width;
    canvas.height = image.height;
    var context = canvas.getContext(&quot;2d&quot;);
    context.drawImage(image, 0, 0);
    imageData = context.getImageData(0, 0, image.width, image.height);
}

If you do this a lot, you can also just have a scratch canvas around for this purpose, already sized to the max of all the incoming images.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>52487</commentid>
    <comment_count>2</comment_count>
    <who name="Michael[tm] Smith">mike</who>
    <bug_when>2011-08-04 05:01:56 +0000</bug_when>
    <thetext>mass-moved component to LC1</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>