javaquery/canvas/src/main/java/net/java/html/canvas/ImageData.java
author Anton Epple <toni.epple@eppleton.de>
Mon, 27 May 2013 11:26:55 +0200
branchcanvas
changeset 1155 ab08a4271d5f
parent 1154 2bdd1eba1880
child 1302 e67363288df1
permissions -rw-r--r--
RGBA values for ImageData
     1 /**
     2  * Back 2 Browser Bytecode Translator Copyright (C) 2012 Jaroslav Tulach
     3  * <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify it under
     6  * the terms of the GNU General Public License as published by the Free Software
     7  * Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
    12  * details.
    13  *
    14  * You should have received a copy of the GNU General Public License along with
    15  * this program. Look for COPYING file in the top folder. If not, see
    16  * http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package net.java.html.canvas;
    19 
    20 /**
    21  * ImageData is an updateable 2-Dimensional Map of Color values. Created (
    22  * createPixelMap / getSnapShot ) by GraphicsContext. you can modify the
    23  * individual pixels and render it using paintPixelMap on GraphicsContext
    24  *
    25  * @author antonepple
    26  */
    27 public interface ImageData {
    28 
    29     public double getHeight();
    30 
    31     public double getWidth();
    32 
    33     public int getR(double x, double y);
    34 
    35     public int getG(double x, double y);
    36 
    37     public int getB(double x, double y);
    38 
    39     public int getA(double x, double y);
    40 
    41     public void setR(double x, double y, int value);
    42 
    43     public void setG(double x, double y, int value);
    44 
    45     public void setB(double x, double y, int value);
    46 
    47     public void setA(double x, double y, int value);
    48 }