twitter4j get user image and image size
in
Contributed Library Questions
•
2 years ago
I'm trying to show the original size of the twitter profile picture with twitter4j library, I can only show normal size this way:
//this give me the image url
String userImg;
userImg = t.getProfileImageUrl();
println(userImg);
And could not get in normal or bigger size with the class:
ProfileImage.ImageSize();
Any suggestions?
http://twitter4j.org/en/javadoc.html
-twitter4j-core-2.1.7-SNAPSHOT.jar and Processing 1.5
2