Package com.octo.captcha.component.image.textpaster

Examples of com.octo.captcha.component.image.textpaster.SimpleTextPaster


        try {  
            textPasterList = new ArrayList();  
            backgroundGeneratorList = new ArrayList();  
            fontGeneratorList = new ArrayList();  

            textPasterList.add(new SimpleTextPaster(MIN_WORD_LENGTH,  
                    MAX_WORD_LENGTH, Color.black));  
            textPasterList.add(new RandomTextPaster(MIN_WORD_LENGTH,  
                    MAX_WORD_LENGTH, Color.black));  
            textPasterList.add(new SimpleTextPaster(MIN_WORD_LENGTH,  
                    MAX_WORD_LENGTH, Color.black));  
            textPasterList.add(new RandomTextPaster(MIN_WORD_LENGTH,  
                    MAX_WORD_LENGTH, Color.black));  
            textPasterList.add(new SimpleTextPaster(MIN_WORD_LENGTH,  
                    MAX_WORD_LENGTH, Color.blue));  
            textPasterList.add(new RandomTextPaster(MIN_WORD_LENGTH,  
                    MAX_WORD_LENGTH, Color.blue));  

            backgroundGeneratorList.add(new GradientBackgroundGenerator(  
View Full Code Here

TOP

Related Classes of com.octo.captcha.component.image.textpaster.SimpleTextPaster

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.