In this video it shows the steps to add text over an existing image by reading it in Bitmap format. It creates a Canvas using the Bitmap and then calls drawText option to edit the bitmap file. I hope you like this video. For any questions, suggestions or appreciation please…
Tag: bitmap
How to Display a Bitmap Image in a WebView in Android App?
The given post features a tutorial video and the complete source code for a procedure to display an image from Android’s local storage into a WebView. The image is retrieved from the download folder, converted into a Bitmap, and loaded into the WebView using the loadDataWithBaseURL API. It shares code for permissions, accessing storage, loading the image into an ImageView, and then converting it into a string using Base64 to load it onto a WebView. The detailed process further includes relevant Android XML design and manifest files. Links are provided for further assistance or queries.
How to save bitmap to an image file in Download folder from your Android App? Android 14 | API level 34
In this video it shows the steps to save a bitmap to image file in download folder from your Android App programmatically. It demonstrates this for Android 14 | API level 34. In this video it refers to the code from my below pages of posted earlier:https://programmerworld.co/android/how-to-fix-the-error-only-mutable-bitmaps-may-be-reconfigured-convert-immutable-bitmap-to-a-mutable-bitmap-in-android-app/https://programmerworld.co/android/how-to-create-and-save-an-image-file-in-download-folder-from-your-android-app-android-13-api-33/ I hope you…
How to fix the error “only mutable bitmaps may be reconfigured” – convert immutable bitmap to a mutable bitmap in Android App?
This video shows the steps to convert an immutable bitmap image to mutable bitmap image in Android App code. It uses below 2 approaches to do the conversion:– Bitmap.createScaledBitmap API– bitmap.copy API I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or…
How to get Bitmap from View (of a widget) from layout in your Android App? – Android 13 API 33
In this video it shows the steps to convert the view of any widget (or layout) to Bitmap form in your Android App. This Bitmap is later used to display the image form in an imageView. I hope you like this video. For any questions, suggestions or appreciation please contact…
How to compress and reduce the size (resolution) of image file from your Android App? – Android 13 API 33
This video shows the steps to compress the image size and save it as another file in the download folder from your Android App. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete source code and other…
How to share bitmap image over Telegram, WhatsApp, google photos, etc. from your Android App?
This video shows the steps to share an image over other applications such as Telegram, WhatsApp, google photos, etc. directly from your Android App. In this video it shares the image in bitmap form (as an image) and not as a file. To share the complete files one can refer…
How to open and convert a JPEG file (from Download folder) into Bitmap in your Android App?
In this video, it shows how to open a jpeg file from download folder and convert it into Bitmap in your Android App. It then uses ImageView to display the image within the App layout. It uses StorageManager to access the internal storage volume. And then access the jpeg file…
How to convert drawable resource image into bitmap in your Android App?
In this video it shows how convert an image from the resource folder in the Android App’s environment to Bitmap in the Android App. It uses “BitmapFactory.decodeResource” API for the same. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email…