Sha256: fc940931ae082476df177944fb0e44cd5fa1aee8436a220320bdc24856ef2899

Contents?: true

Size: 1.44 KB

Versions: 3

Compression:

Stored size: 1.44 KB

Contents

/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */

/*
  Part of the Processing project - http://processing.org

  Copyright (c) 2012-18 The Processing Foundation
  Copyright (c) 2004-12 Ben Fry and Casey Reas
  Copyright (c) 2001-04 Massachusetts Institute of Technology

  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
  License as published by the Free Software Foundation, version 2.1.

  This library 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
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General
  Public License along with this library; if not, write to the
  Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  Boston, MA  02111-1307  USA
*/

package processing.core.util.image.load;


/**
 * Convenience functions for use while loading images.
 */
public class ImageLoadUtil {

  /**
   * Determine if a file requires alpha channel checking.
   *
   * @param extension The file extension.
   * @return True if one needs to look for alpha channel and false otherwise.
   */
  public static boolean checkExtensionRequiresAlpha(String extension) {
    return extension.equals("gif") ||
        extension.equals("png") ||
        extension.equals("unknown");
  }

}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
propane-3.4.0-java src/main/java/processing/core/util/image/load/ImageLoadUtil.java
propane-3.3.1-java src/main/java/processing/core/util/image/load/ImageLoadUtil.java
propane-3.3.0-java src/main/java/processing/core/util/image/load/ImageLoadUtil.java