Java ByteBuffer Size sameSize(BufferedImage im1, BufferedImage im2)

Here you can find the source of sameSize(BufferedImage im1, BufferedImage im2)

Description

Return true if image has the same size

License

Open Source License

Declaration

public static boolean sameSize(BufferedImage im1, BufferedImage im2) 

Method Source Code

//package com.java2s;
/*/*from w  w w.  j  ava2 s .com*/
 * Copyright 2010, 2011 Institut Pasteur.
 * 
 * This file is part of ICY.
 * 
 * ICY 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.
 * 
 * ICY 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 ICY. If not, see <http://www.gnu.org/licenses/>.
 */

import java.awt.image.BufferedImage;

public class Main {
    /**
     * Return true if image has the same size
     */
    public static boolean sameSize(BufferedImage im1, BufferedImage im2) {
        return (im1.getWidth() == im2.getWidth()) && (im1.getHeight() == im2.getHeight());
    }
}

Related

  1. newArgbBufferedImage(int width, int height)
  2. overlapsPoints(BufferedImage inImage, int inX, int inY, int inWidth, int inHeight, Color inTextColour)
  3. pack(List buffers, int elements, int size)
  4. rescaleImage(BufferedImage img, int targetWidth, int targetHeight, Object hint)
  5. rightSize(ByteBuffer in)
  6. scanForDuplicates(BufferedImage leftImage, BufferedImage[] images, int i, int[] order, int width, int height)
  7. sizeOfBytes(ByteBuffer bytes)
  8. sizeOfBytesMap(Map m)
  9. sizeOfValue(ByteBuffer bytes)