I'm trying to get the real size of an image displayed in an image view. Actually my image is larger than the screen and the imageview is resizing the image to diplay it. I'm looking for this new size.

I've tried to override the onDraw method of the ImageView in a custom view but I'm not getting the correct height and width...

public class LandImageView extends ImageView
{
    public LandImageView( Context context )
    {
        super( context );
    }

    public LandImageView(Context context, AttributeSet attrs)
    {
        super(context, attrs);
    }

    public LandImageView(Context context, AttributeSet attrs, int defStyle)
    {
        super(context, attrs, defStyle);
    }

    @Override
    protected void onDraw( Canvas canvas )
    {
        super.onDraw( canvas );

        int test = this.getWidth();
        int test2 = this.getHeight();
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh)
    {
        super.onSizeChanged(w, h, oldw, oldh);
    }
}

Do you have any clues ?

link|improve this question
is it a Bitmap? Bitmap does have getWidth()and getHeight() functions. – bhups Oct 4 '10 at 13:14
Yes, it's a bitmap but I don't want the real size of the bitmap but the display size which is different because the image is larger than the screen. Thanks for your help ! – Guillaume Ménant Oct 4 '10 at 14:41
1  
Can't you simply use View.getWidth() and View.getHeight() ? – Kevin Gaudin Oct 17 '10 at 23:53
Despite all your solutions, I've not found what I'm looking for right now... With all these methods, I'm getting the REAL size of my original bitmap (858*552) but not the size of this bitmap on the screen :-/ The screen is 480*320 so I have to get bounds smaller than these values but it's not working yet. Perhaps I'm missing something ! – Guillaume Ménant Oct 28 '10 at 8:23
feedback

10 Answers

Try

ImageView.getDrawable().getIntrinsicHeight()
ImageView.getDrawable().getIntrinsicWidth()
link|improve this answer
feedback

I'm just passing by but hope it still helps I'm going under the assumption your talking about bitmaps in your imageView

what you want to understand is the difference between

bmpBack.getWidth() -> this gives you the size of your bitmap and bmpBack.getScaledWidth(canvas); -> this will give you the size of the bitmap as displayed on the screen.

I never used ImageView because the relative display was driving me mad so in the end I just override the onDraw and did my canvas very similarly to opengl.

I think this is your problem

cheers

Jason

link|improve this answer
feedback

try overriding onMeasure(int widthMeasureSpec, int heightMeasureSpec) instead of onSizeChanged.

link|improve this answer
Even with this method, I have not the data I need. – Guillaume Ménant Oct 4 '10 at 14:40
Even with the method onMeasure I have not the display size of the bitmp but the size of the layer I guess... – Guillaume Ménant Oct 5 '10 at 5:27
feedback

No answer for this "basic" request ? Perhaps I'm not taking the problem from the good side...

In fact my need is to place on this image some markers and their coordinates are based on the real image size. So I would know the diplay size to place my markers on the screen. These marquers have to be clickable so I can't add them on the image before displaying it.

Do you have other ideas to do this without this size ?

link|improve this answer
feedback

How about ImageView.getBackground() or ImageView.getDrawable(), then Drawable.getBounds()?

link|improve this answer
feedback

If I get you correctly you need your ImageView dimension, in order to scale your image accordingly. I did this with a custom class, where I override the onMeasure() call to get width and height.

class LandImageView extends ImageView{ 
public LandImageView (Context context, AttributeSet attrs) {
  super (context, attrs);
 } 
 @Override
 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) 
 {
  super.onMeasure(widthMeasureSpec, heightMeasureSpec);

  final int width = MeasureSpec.getSize(widthMeasureSpec);
  final int height = MeasureSpec.getSize(heightMeasureSpec);

  Log.v("", String.format("w %d h %d", width, height));
                // width and height are the dimensions for your image
                // you should remember the values to scale your image later on

  this.setMeasuredDimension(width, height );
 }}

In onMeasure you get the width and height for your image so that it fits your view.

You can use the LandImageView in your Layout like this:

<my.package.LandImageView ... >
link|improve this answer
feedback

How to get ImageViews TouchEvent in SurfaceView

link|improve this answer
feedback
public class images extends Activity {
ImageView i1;
LinearLayout l1;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
     i1=(ImageView)findViewById(R.id.iv);
     l1 = new LinearLayout(this);
    ImageView i = new ImageView(this);
    ImageView i1 = new ImageView(this);
    i.setImageResource(R.drawable.  imagename.........);

    l1.addView(i);
    l1.addView(i1);
    setContentView(l1);
    }
}

first add the images in ur resource folder....... and in xml file create a image view....

link|improve this answer
feedback

I was looking for a solution to set the dimension of the image view to the scaled image to prevent empty space on top/bottom or left/right (cause the dimension of the view doesn't changed to fit the scaled image).

What I found to do the trick was using the method mImageView.setAdjustViewBounds(true); which results in the correct layout dimension. I don't have the scaled image dimension but I got the result I was looking for... just if someone needs it...

link|improve this answer
feedback

Try loading your resource using BitmapFactory.decodeResource (Resources res, int id, BitmapFactory.Options opts) with the BitmapFactory.Options() class. BitmapFactory.Options() has a flag which called "inJustDecodeBounds" and gives only the resource dimensions.

Hope that helped.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.