Results 1 to 2 of 2

Thread: Twitter getProfileImageURL

  1. #1

    Default Twitter getProfileImageURL

    Hi,

    I would have a question to the twitter Image URL path. I get the URL with:

    Code:
    final String profileImageUrl = twitterProfile.getProfileImageUrl();
    this image has a size of 48x48pixel. In my application it looks like a little bit blurred.
    Is there any possibility to get a twitter profile image with a higher size.

    Thanks a lot,
    Generic

    My application where I have implemented Spring Social: http://www.atleticus.net

  2. #2
    Join Date
    Sep 2012
    Location
    Ahmedabad
    Posts
    3

    Default

    CSS3 allows us to decide on between a few different values for the “background-size” property. The properties are, length, percentage, cover, and contain. To the CSS rule to always have it 100% width and automatically scale the height to the aspect ratio, or the inverse (min-height: 100%; width: auto to always scale to max height and relative width. To do both, you will need to determine if the aspect ratio is higher or lower than it's container, and CSS can't do this.
    Last edited by veronicazora; Sep 27th, 2012 at 04:14 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •