Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSteve Bedard
14,335 PointsError loading picasso image
I have an error in the logcat saying "Bitmap too large to be uploaded into a texture". What can i do ?
5 Answers
Ben Jakuben
Treehouse TeacherWhat size image are you trying to load? It's from the web, I assume? Here's one potential list of answers from StackOverflow: http://stackoverflow.com/a/14877627/475217
Hiroki Hokari
5,308 PointsI debug-checked and it seems that imageUri variable of URI right before Picaso displaying gets correct URI from Intent.
Ben Jakuben
Treehouse TeacherI think you need to resize the image even further for certain devices. Each device has a size limit for images that can be viewed in an ImageView. In FileHelper.java, try a smaller size for this variable:
public static final int SHORT_SIDE_TARGET = 1280;
Maybe start testing at 1024?
Hiroki Hokari
5,308 PointsThank you, Ben. I replied in my post that you just had the comment. By the way, I've been a huge fan of you enjoying your videos.
Steve Bedard
14,335 PointsI just use my camera to Take Picture from the Dialog. My camera take 8mpixels photos so i guess that's the problem but i guess Picasso can't manage that.
Ben Jakuben
Treehouse TeacherAre you downsizing the image at all? Are you using the helper files like in this video? http://teamtreehouse.com/library/build-a-selfdestructing-message-android-app/sending-messages/adding-a-file-to-the-message-part-2 That should reduce images to manageable sizes.
Also, you can check the size of the file directly from Parse. One way is to go to the Data Browser, click on a file in a message and view it in the browser. You can visually see how big it is and also download it to your computer to get the size in MB.
Hiroki Hokari
5,308 PointsI have this problem, too. I resized the image with resizer and helper in the manner of the video. And in fact, I downloaded the image from Parse and the size was around 1MB.
Timothy Boland
18,237 PointsI changed SHORT_SIDE_TARGET
down to 1000 and Im still not seeing the images
Ben Jakuben
Treehouse TeacherCan you get it to work at any smaller sizes?