Java ByteBuffer Size newArgbBufferedImage(int width, int height)

Here you can find the source of newArgbBufferedImage(int width, int height)

Description

Creates a new ARGB BufferedImage of the given width and height.

License

Apache License

Parameter

Parameter Description
width The width of the new image.
height The height of the new image.

Return

The newly created image.

Declaration

public static BufferedImage newArgbBufferedImage(int width, int height) 

Method Source Code

//package com.java2s;
/*//from  www  . j  a  v a  2  s.  c om
 * Copyright (C) 2008 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.awt.image.BufferedImage;

public class Main {
    /**
     * Creates a new ARGB {@link BufferedImage} of the given width and height.
     *
     * @param width  The width of the new image.
     * @param height The height of the new image.
     * @return The newly created image.
     */
    public static BufferedImage newArgbBufferedImage(int width, int height) {
        return new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
    }
}

Related

  1. mapByteBuffer(File cachedFile, int cacheFileSize)
  2. markDifferencesWithAMarker(final BufferedImage image, final Point[] pixels, final int markingSizeX, final int markingSizeY)
  3. markDifferencesWithBoxes(final BufferedImage image, final Point[] pixels, final int markingSizeX, final int markingSizeY)
  4. maybeGrow(List l, int size)
  5. needsThumbnail(BufferedImage image, int newSize)
  6. overlapsPoints(BufferedImage inImage, int inX, int inY, int inWidth, int inHeight, Color inTextColour)
  7. pack(List buffers, int elements, int size)
  8. rescaleImage(BufferedImage img, int targetWidth, int targetHeight, Object hint)
  9. rightSize(ByteBuffer in)