I am loading some image using
Resources resources = WatchFaceService.this.getResources();
Drawable spritesDrawable = resources.getDrawable(R.drawable.sprites);
mSpritesBitmap = ((BitmapDrawable)spritesDrawable).getBitmap();
R.drawable.sprites is a 640x700 PNG, yet
Log.d( TAG, "SpritesBitmap=" + mSpritesBitmap.getWidth() + "x" + mSpritesBitmap.getHeight());
outputs 960x1050
Where does the 1.5 scale come from?