Package com.blitline.image.functions

Examples of com.blitline.image.functions.Crop


  public static ContrastStretchChannel stretchContrast(int blackPoint, int whitePoint) {
    return new ContrastStretchChannel(blackPoint).whitePoint(whitePoint);
  }

  public static Crop cropToWidth(int width) {
    return new Crop(width);
  }
View Full Code Here


  public static Crop cropToWidth(int width) {
    return new Crop(width);
  }

  public static Crop cropToSize(int width, int height) {
    return new Crop(width).height(height);
  }
View Full Code Here

  public static ContrastStretchChannel stretchContrast(int blackPoint, int whitePoint) {
    return new ContrastStretchChannel(blackPoint).whitePoint(whitePoint);
  }

  public static Crop cropToWidth(int width) {
    return new Crop(width);
  }
View Full Code Here

  public static Crop cropToWidth(int width) {
    return new Crop(width);
  }

  public static Crop cropToSize(int width, int height) {
    return new Crop(width).height(height);
  }
View Full Code Here

  public static ContrastStretchChannel stretchContrast(int blackPoint, int whitePoint) {
    return new ContrastStretchChannel(blackPoint).whitePoint(whitePoint);
  }

  public static Crop cropToWidth(int width) {
    return new Crop(width);
  }
View Full Code Here

  public static Crop cropToWidth(int width) {
    return new Crop(width);
  }

  public static Crop cropToSize(int width, int height) {
    return new Crop(width).height(height);
  }
View Full Code Here

TOP

Related Classes of com.blitline.image.functions.Crop

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.