Package de.bripkens.gravatar

Examples of de.bripkens.gravatar.Gravatar


     *            the size of the gravatar
     * @return the URL
     */
    public String getGravatarURL(String email, int size) {
        if (email == null) {
            return new Gravatar().setSize(size).setHttps(true).setRating(Rating.GENERAL_AUDIENCE)
                .setStandardDefaultImage(DefaultImage.MYSTERY_MAN).getUrl("");
        }

        return new Gravatar().setSize(size).setHttps(true).setRating(Rating.GENERAL_AUDIENCE)
            .setStandardDefaultImage(DefaultImage.MYSTERY_MAN).getUrl(email);
    }
View Full Code Here

TOP

Related Classes of de.bripkens.gravatar.Gravatar

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.