Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9016659
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T04:03:21+00:00 2026-06-16T04:03:21+00:00

I have one weird problem and I’m trying to solve it a couple of

  • 0

I have one weird problem and I’m trying to solve it a couple of hours already. Problem is that this code below can decode all images except those one which have small first letter in name. For example, it’s working for Dog.png or 123.png but it doesn’t work for dog.png, cat.png or any other with small first letter. It just displays some random color for them. I’m confused. Any ideas?

    Bitmap bitmap = null;

    options.inJustDecodeBounds = false;
    try {
        bitmap =  BitmapFactory.decodeStream((InputStream)new URL(imagePath).getContent(), null, options);
    } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    image.setImageBitmap(bimage);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T04:03:22+00:00Added an answer on June 16, 2026 at 4:03 am

    I found the solution. Pictures from those URL’s can be decoded but the problem was it was too big so it showed extremely enlarged and looked like it’s not showing.

    First we need to catch description of image like this:

    options.inJustDecodeBounds = true;
    BitmapFactory.decodeStream((InputStream)new URL(url).getContent(), null, options);
    

    Then scale it to desired width/height, reqHeight/reqWidth are wanted size parameters:

    int height = options.outHeight;
    int width = options.outWidth;
    int inSampleSize;
    
    if (height > reqHeight || width > reqWidth) {
    if (width > height) {
    inSampleSize = Math.round((float)height / (float)reqHeight);
    } 
    else {
    inSampleSize = Math.round((float)width / (float)reqWidth);
    }
    }
    

    After that just repeat that code from question:

    Bitmap bitmap = null;
    
    options.inJustDecodeBounds = false;
    try {
        bitmap =  BitmapFactory.decodeStream((InputStream)new URL(imagePath).getContent(), null, options);
    } catch (MalformedURLException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    

    Now we can save it to some directory:

    File file = new File(some_path\image.png);
    
        if (!file.exists() || file.length() == 0) {
                file.createNewFile();
                FileOutputStream fos = new FileOutputStream(file);
                bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
                fos.close();
                fos.flush();
    

    Image in now saved and we can grab it and display in our ImageView called image:

    Bitmap bitmap = BitmapFactory.decodeFile(some_path\image.png);
    image.setImageBitmap(bitmap);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a weird problem in some JavaScript code that's a part of one
Ok, this one is weird, i have this code: $('#nps').submit(function(e) { e.preventDefault(); var images
I have encountered a weird problem and I can't manage a way to solve
I have this weird problem with one of my SP's. I have a SP
I'm having a weird problem. I have this code $topic contains 海賊_(ONE_PIECE) from URI
I have a really weird problem. The below code works fine if I create
this is a weird one. i have a -pre-compile target in my custom_rules.xml .
Ok, this is a really weird one. I have an MPI program, where each
I know this one is the weirdest of all weird questions I have asked
I am having a weird problem .. I have written a CUDA code which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.