Home | History | Annotate | Download | only in editstyledtext

Lines Matching defs:image_width

2684                 int image_width = image.getIntrinsicWidth();
2687 Log.d(LOG_TAG, "--- rescaleBigImage:" + image_width + "," + image_height
2690 if (image_width > MAXWIDTH) {
2691 image_width = MAXWIDTH;
2692 image_height = image_height * MAXWIDTH / image_width;
2694 image.setBounds(0, 0, image_width, image_height);