Examples of Crop


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

Examples of com.blitline.image.functions.Crop

  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

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

Examples of com.blitline.image.functions.Crop

  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

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

Examples of com.blitline.image.functions.Crop

  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

Examples of org.broadleafcommerce.openadmin.server.service.artifact.image.effects.chain.filter.Crop

    public EffectsManager() {
        filters.put(FilterTypeEnum.ALTERHSB.toString().toLowerCase(), new AlterHSB());
        filters.put(FilterTypeEnum.ALTERRGB.toString().toLowerCase(), new AlterRGB());
        filters.put(FilterTypeEnum.AUTOLEVELSRGB.toString().toLowerCase(), new AutoLevelsRGB());
        filters.put(FilterTypeEnum.CROP.toString().toLowerCase(), new Crop());
        filters.put(FilterTypeEnum.GAUSSIANBLUR.toString().toLowerCase(), new GaussianBlur());
        filters.put(FilterTypeEnum.RESIZE.toString().toLowerCase(), new Resize());
        filters.put(FilterTypeEnum.ROTATE.toString().toLowerCase(), new Rotate());
        filters.put(FilterTypeEnum.UNSHARPMASK.toString().toLowerCase(), new UnsharpMask());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.