Examples of BackgroundFactory


Examples of cn.dreampie.captcha.background.BackgroundFactory

    int imgWidth = 400;
    int imgHeight = 300;
    File file = new File("/home/ice/图片/test.png");
    BufferedImage image = new BufferedImage(imgWidth, imgHeight,
        BufferedImage.TYPE_INT_ARGB);//RGB形式
    BackgroundFactory bf = new SimpleBackgroundFactory(new Color(255, 255, 0, 100));
    bf.fillBackground(image);
    try {
      ImageIO.write(image, "png", file);
    } catch (IOException e) {
      e.printStackTrace();
    }
View Full Code Here

Examples of ru.autosome.commons.backgroundModel.mono.BackgroundFactory

    return result.toString();
  }

  @Override
  public BackgroundFactory compatibleBackground() {
    return new BackgroundFactory();
  }
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.