- Как получить растровое изображение от Uri?
- Convert Bitmap to File in Android – JAVA & Kotlin
- Method to Convert Bitmap to File in Java
- Method to Convert Bitmap to File in Kotlin
- Required Imports
- Permission Required to Access External Storage
- Explanation
- Convert File to Bitmap in Android
- Convert File to Bitmap in Java
- Convert File to Bitmap in Kotlin
- Pick Image From Gallery in Kotlin – Android
- Method to Pick Image From Gallery in Kotlin
- Get Image Full Path From URI
- Optional
- 1. Upload Image to Server in Android
- 2. Capture Photo with Camera in Kotlin – Android
- 3. Pick Multiple Images From Gallery in Kotlin
- Get Path From URI In Kotlin Android
- Utility Class to Get Path From URI In Kotlin
- How to Use URIPathHelper class to get path from URI
- Explanation
Как получить растровое изображение от Uri?
Как получить растровый объект из Uri (если мне удастся сохранить его в /data/data/MYFOLDER/myimage.png или file///data/data/MYFOLDER/myimage.png ), чтобы использовать его в моем приложении?
У кого-нибудь есть идеи как это сделать?
, , ВАЖНО: Смотрите ответ от @Mark Ingram ниже и @pjv для лучшего решения. , ,
Вы можете попробовать это:
Но помните, этот метод должен вызываться только из потока (не GUI-thread). Я AsyncTask.
Вот правильный способ сделать это:
Если вам нужно загрузить очень большие изображения, следующий код загрузит их в виде плиток (избегая больших выделений памяти):
Вот правильный способ сделать это, а также следить за использованием памяти:
Вызов getBitmap () из поста Марка Инграма также вызывает decodeStream (), поэтому вы не теряете никакой функциональности.
и да путь должен быть в таком формате
Это самое простое решение:
Похоже, что MediaStore.Images.Media.getBitmap это устарело в России API 29 . Рекомендуемый способ — использовать ImageDecoder.createSource который был добавлен в API 28 .
Вот как можно получить растровое изображение:
Вы можете получить растровое изображение из URI, как это
Используйте метод startActivityForResult, как показано ниже
И вы можете получить такой результат:
Я пробовал много способов. эта работа для меня отлично.
Если вы выбираете Pictrue из галереи. Вы должны быть посуда получения Uri от intent.clipdata или intent.data , потому что один из них может быть пустым в другой версии.
Вы можете сделать эту структуру:
этим вы можете легко конвертировать URI в растровое изображение. надеюсь помочь тебе
Вкладка из getBitmap которых ограничена, теперь я использую следующий подход в Kotlin
(КОТЛИН) Итак, по состоянию на 7 апреля 2020 года ни один из вышеупомянутых вариантов не работал, но вот что сработало для меня:
Если вы хотите сохранить растровое изображение в val и установить для него imageView, используйте это:
val bitmap = BitmapFactory.decodeFile(currentPhotoPath).also < bitmap ->imageView.setImageBitmap(bitmap) >
Если вы просто хотите установить растровое изображение и imageView, используйте это:
Источник
Convert Bitmap to File in Android – JAVA & Kotlin
It’s a common requirement in Android Apps to save images as files in external storage and get a File reference from that saved location. Usually, we have images in the form of Bitmap in Android. In the following article, we will discuss how to Convert Bitmap to File in Android in both Java & Kotlin.
Method to Convert Bitmap to File in Java
Method to Convert Bitmap to File in Kotlin
Required Imports
Permission Required to Access External Storage
Most importantly, to save files in external storage we need to add external storage permission in the AndroidManifest file. For that add the following uses-permission tags in your Android Manifest file above the application tag.
These READ_EXTERNAL_STORAGE & WRITE_EXTERNAL_STORAGE permissions are dangerous permissions which means that to support Android 6.0 (API level 23) or higher, we need to handle it on runtime. For that, I have already written a detailed article to Handle Runtime Permissions in Android.
Explanation
The above methods take 2 parameters. The first parameter is the Bitmap object that you want to save in the file. The second parameter is the fileName by which you want to save the file in your external storage. This method compresses your Bitmap into PNG format and saves it in the External Storage. You can also change its compress format to JPEG. This method will return you the file object that you can use for future reference and retrieving the image again from the file. For that purpose, you can use the following code.
Convert File to Bitmap in Android
Converting File into bitmap just requires one line of code.
Convert File to Bitmap in Java
Convert File to Bitmap in Kotlin
If you have any question feel free to ask in the following comments section.
Источник
Pick Image From Gallery in Kotlin – Android
This article contains a step by step guide to pick an image from the Gallery in Kotlin Android.
Before starting, add the following READ_EXTERNAL_STORAGE permission in your Manifest.xml file above the application tag.
You also need to add Runtime permissions for API Level 19 & above. This article will help you to Ask Runtime Permissions in Kotlin Android.
Method to Pick Image From Gallery in Kotlin
After adding permissions you can call the following method to pick an image from Gallery.
The above method will open the phone’s default Gallery App. After choosing an image, Gallery will automatically be closed and your Activity’s onActivityResult method will be called. The code is the following.
in the Above ‘ onActivityResult ‘ method, you receive an Intent object which contains all data about the selected image.
REQUEST_CODE is a constant integer value, which can be initialized with any number at the class level, like below.
Get Image Full Path From URI
I have already written an article on the topic to get the file path from a URI. I have provided a URIPathHelper class to get the file path from a URI. You can copy the URIPathHelper class from this article and use it in your code to get the full image path from the URI you received above in the onActivityResult(. ) method.
Get Path From URI In Kotlin Android
Optional
If you want to get Bitmap From ImageView in Kotlin, you can use the following code.
For further operations on Bitmap & Images, like resizing, have a look at our post Resize Bitmap by Keeping the Same Aspect Ratio in Kotlin.
If you have any questions, don’t hesitate to ask in the comments section below.
1. Upload Image to Server in Android
2. Capture Photo with Camera in Kotlin – Android
3. Pick Multiple Images From Gallery in Kotlin
You can also visit our Coding Articles & Tutorials Knowledge Base for other helping code snippets.
Источник
Get Path From URI In Kotlin Android
When we pick an image, video, audio, or any other file from the gallery or documents directory we receive URI in intent in the onActivityResult(. ) method. So we always further required to get a full file path from that URI. If we directly try to get the path through URI.getData() method, it doesn’t serve the purpose as it provides FileManager address but not the full file path present in the external storage. The following utility class will help you to Get Path From URI In Kotlin Android.
Utility Class to Get Path From URI In Kotlin
Just create a new file with name URIPathHelper.kt. Then copy and paste the following Utility class in your file. It covers all scenarios and works perfectly for all Android versions. Its explanation will be discussed later.
How to Use URIPathHelper class to get path from URI
Explanation
In the above class, the getPath(…) method is our main method, which uses other methods and finds the path from the given URI. Firstly, it checks the current Android Version, because there is a separate mechanism for getting path from URI in the versions below Kitkat (4.4) and above it. In the versions above the Kitkat, we have to implement a separate logic for different file types, either they are picked from documents directory, Gallery, or downloads folder.
In the User’s Android version is less than Kitkat then getDataColumn(. ) method will serve the purpose as gets the file path using ContentResolver.
Источник