Package nl.captcha.backgrounds

Examples of nl.captcha.backgrounds.TransparentBackgroundProducer


         * Add a background using the default BackgroundProducer.
         *
         * @return
         */
        public Builder addBackground() {
            return addBackground(new TransparentBackgroundProducer());
        }
View Full Code Here


         *
         * @return
         */
        public Captcha build() {
          if (_bg == null) {
            _bg = new TransparentBackgroundProducer().getBackground(_img.getWidth(), _img.getHeight());
          }

          // Paint the main image over the background
          Graphics2D g = _bg.createGraphics();
          g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 1.0f));
View Full Code Here

TOP

Related Classes of nl.captcha.backgrounds.TransparentBackgroundProducer

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.