Java BufferedImage Operation setPixel(BufferedImage img, int x, int y, int c)

Here you can find the source of setPixel(BufferedImage img, int x, int y, int c)

Description

set Pixel

License

Open Source License

Declaration

public static void setPixel(BufferedImage img, int x, int y, int c) 

Method Source Code

//package com.java2s;
/*//from   ww w .j av a 2  s.  c om
 * Copyright appNativa Inc. All Rights Reserved.
 *
 * This file is part of the Real-time Application Rendering Engine (RARE).
 *
 * RARE is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

import java.awt.image.BufferedImage;

public class Main {
    public static void setPixel(BufferedImage img, int x, int y, int c) {
        img.setRGB(x, y, c);
    }
}

Related

  1. setColor(BufferedImage image, int x, int y, int[] color, String colorModel)
  2. setCompressionType(ImageWriteParam param, BufferedImage image)
  3. setImageIntPixels(BufferedImage image, boolean allowDeoptimizingDirectRead, IntBuffer pixels)
  4. setLockImage(BufferedImage image)
  5. setLuminance(BufferedImage image, int x, int y, float value)
  6. setPoint(BufferedImage image, int x, int y, int factor, Color color)
  7. showColors(BufferedImage image, boolean alpha, boolean red, boolean green, boolean blue)
  8. shrink(BufferedImage source, double factor)
  9. smaller(final BufferedImage src, final int radius, final int opaqueLimit)