无法从相机返回的图像中获取正确的像素
Can't get the correct pixel from an image returned from camera
我正在尝试在 imageview 中加载从设备相机返回的图像,并获取我触摸的像素的颜色。
我尝试缩放 xml 文件中的图像,但是当我这样做时,虽然我看到图像适合图像视图,但触摸监听器仍以图像的原始尺寸工作。
如果我不缩放它,我只会看到适合 imageview 的图像部分,而 touchlistener 会获得实际像素。
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == Activity.RESULT_OK) {
bitmap = BitmapFactory.decodeFile(mCurrentPhotoPath)
ivCamera.setImageBitmap(bitmap)
ivCamera.setOnTouchListener { view, motionEvent ->
val bmp = (ivCamera.drawable as BitmapDrawable).bitmap
val pixel = bmp.getPixel(motionEvent!!.x.toInt(), motionEvent.y.toInt())
pixelRed = Color.red(pixel)
pixelGreen = Color.green(pixel)
pixelBlue = Color.blue(pixel)
tvColor.setBackgroundColor(Color.rgb(pixelRed!!, pixelGreen!!, pixelBlue!!))
true
}
}
}
<ImageView android:layout_width="match_parent"
android:layout_weight="0.7"
android:layout_height="0dp"
android:id="@+id/ivCamera"
android:scaleType="matrix"
android:background="@android:drawable/ic_menu_report_image"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
app:layout_constraintHorizontal_bias="0.498"
android:layout_margin="10dp"
android:layout_marginBottom="8dp"
android:adjustViewBounds="true"
app:layout_constraintBottom_toBottomOf="parent"
android:contentDescription="PicureTaken"/>
如果我在 xml 文件中缩放图像,我会看到图像适合 imageview,但 touchlistener 以图像的原始尺寸工作。
如果我不缩放它,我只会看到适合 imageview 的图像部分,而 touchlistener 会获得实际像素。
这可能是您在 XML 比例类型生效 ivCamera.setImageBitmap
之前设置触摸侦听器 ivCamera.setOnTouchListener
的疯狂场景之一。即它在 scaleType
生效之前设置了原始尺寸。
您可以使用布局侦听器在 ImageView 完成膨胀后设置触摸侦听器。
https://developer.android.com/reference/android/view/ViewTreeObserver.OnGlobalLayoutListener
ivCamera.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
ivCamera.getViewTreeObserver().removeOnGlobalLayoutListener(this);
if(ivCamera.getDrawable() != null) {
ivCamera.setOnTouchListener {
// etc
// ...
}
}
});
这不是我有信心的答案,而是答案。 :-) 抱歉,这太可怕了/太糟糕了!
再看一遍...
val bmp = (ivCamera.drawable as BitmapDrawable).bitmap
val pixel = bmp.getPixel(motionEvent!!.x.toInt(), motionEvent.y.toInt())
您从 ImageView 取回位图,然后调用 getPixel
,但显然 .bitmap
返回给您原始大小的位图,即使您使用 [=14 缩放它(对于视图)也是如此=].
我的建议是将触摸事件的 x/y co-ordinates 转换为缩放后的图像大小。
或者在对 ImageView 调用 setImageBitmap
之前自行缩放位图。这样你就不需要翻译 x/y.
我正在尝试在 imageview 中加载从设备相机返回的图像,并获取我触摸的像素的颜色。
我尝试缩放 xml 文件中的图像,但是当我这样做时,虽然我看到图像适合图像视图,但触摸监听器仍以图像的原始尺寸工作。 如果我不缩放它,我只会看到适合 imageview 的图像部分,而 touchlistener 会获得实际像素。
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == Activity.RESULT_OK) {
bitmap = BitmapFactory.decodeFile(mCurrentPhotoPath)
ivCamera.setImageBitmap(bitmap)
ivCamera.setOnTouchListener { view, motionEvent ->
val bmp = (ivCamera.drawable as BitmapDrawable).bitmap
val pixel = bmp.getPixel(motionEvent!!.x.toInt(), motionEvent.y.toInt())
pixelRed = Color.red(pixel)
pixelGreen = Color.green(pixel)
pixelBlue = Color.blue(pixel)
tvColor.setBackgroundColor(Color.rgb(pixelRed!!, pixelGreen!!, pixelBlue!!))
true
}
}
}
<ImageView android:layout_width="match_parent"
android:layout_weight="0.7"
android:layout_height="0dp"
android:id="@+id/ivCamera"
android:scaleType="matrix"
android:background="@android:drawable/ic_menu_report_image"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
app:layout_constraintHorizontal_bias="0.498"
android:layout_margin="10dp"
android:layout_marginBottom="8dp"
android:adjustViewBounds="true"
app:layout_constraintBottom_toBottomOf="parent"
android:contentDescription="PicureTaken"/>
如果我在 xml 文件中缩放图像,我会看到图像适合 imageview,但 touchlistener 以图像的原始尺寸工作。 如果我不缩放它,我只会看到适合 imageview 的图像部分,而 touchlistener 会获得实际像素。
这可能是您在 XML 比例类型生效 ivCamera.setImageBitmap
之前设置触摸侦听器 ivCamera.setOnTouchListener
的疯狂场景之一。即它在 scaleType
生效之前设置了原始尺寸。
您可以使用布局侦听器在 ImageView 完成膨胀后设置触摸侦听器。
https://developer.android.com/reference/android/view/ViewTreeObserver.OnGlobalLayoutListener
ivCamera.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
ivCamera.getViewTreeObserver().removeOnGlobalLayoutListener(this);
if(ivCamera.getDrawable() != null) {
ivCamera.setOnTouchListener {
// etc
// ...
}
}
});
这不是我有信心的答案,而是答案。 :-) 抱歉,这太可怕了/太糟糕了!
再看一遍...
val bmp = (ivCamera.drawable as BitmapDrawable).bitmap
val pixel = bmp.getPixel(motionEvent!!.x.toInt(), motionEvent.y.toInt())
您从 ImageView 取回位图,然后调用 getPixel
,但显然 .bitmap
返回给您原始大小的位图,即使您使用 [=14 缩放它(对于视图)也是如此=].
我的建议是将触摸事件的 x/y co-ordinates 转换为缩放后的图像大小。
或者在对 ImageView 调用 setImageBitmap
之前自行缩放位图。这样你就不需要翻译 x/y.