Android save bitmap to gallery

Сохранение Bitmap в галерею

Картинка сохраняется но в галереи не отображается. Виден только если зайти в папку через проводник.. Почему так??)

Как отключить автоматическое сохранение снимка с камеры в галерею
Бьюсь уже несколько дней. Из активити вызываю приложение Камера, указав место, где сохранить.

Сохранение в bitmap
народ помогите правильно организовать сохранение в bitmap, а то после сохранения в картинке.

Сохранение CreateGraphics() в Bitmap
Я использую метод CreateGraphics для того, чтобы нарисовать определённый рисунок Dim g As Graphics.

SharpDX: сохранение кадра в Bitmap
Доброго времени суток. Уже пару дней сижу, с казалось бы, простейшей задачей: взять front buffer и.

Решение

YuraAAA, Спасибо!
Не знал

Добавлено через 1 час 3 минуты
YuraAAA,
Чета все равно не появляется в галереи .. Что то не так делаю?

Добавлено через 18 часов 53 минуты
Надо еще добавить

Выделение области в PictureBox и сохранение ее в Bitmap
Вот к примеру pictureBox, как сделать так что бы на нем можно было выделить область и эта.

Сохранение bitmap в удаленный каталог на сервер.
Такая проблема не могу сохранить готовое изображение на удаленный сервер в папку. Нужно по нажатию.

создание Clone с Bitmap меньшего размера с сохранением изначальных габаритов Bitmap
Взялся за GDI, столкнулся с проблемой. Есть «бегущая строка», она движется справа налево. Если.

Как создать bitmap из области (по координатам пикселей) другого bitmap
Здравствуйте. Подскажите пожалуйста как создать bitmap из области(по координатам пикселей) другого.

Источник

Things are changing very fast in tech world. And if you want to be an Android Developer, then be ready to keep upgrading yourself. Actually this learning curve is the best thing that I like about this industry (My personal opinion). So, here is a new about about “Android Save Bitmap to Gallery”.

Saving file to internal storage, is required many times in our projects. We have done this thing many times before, but the method for saving file to internal storage has been changed completely for devices running with OS >= android10.

Basically your old way of saving files will not work with new versions of android, starting with android10. You can still go the old way, but it is a temporary solution. In this post we are going to talk about all these things.

File Storage in Android

Now, we have two kinds of storage to store files.

  • App-specific storage: The files for your application only. Files store here cannot be accessed outside your application. And you do not need any permission to access this storage.
  • Shared Storage: The files that can be shared with other apps as well. For example Media Files (Images, Videos, Audios), Documents and other files.
Читайте также:  Плагины для тотал коммандер для андроид

To know more details about File Storage in Android, you can go through this official guide.

In this post we will be saving a Bitmap to Shared Storage as an Image File.

To demonstrate saving file to internal storage in android10, I will be creating an app that will fetch an Image from the Given URL and then it will save it to external storage.

Let’s first start with the main function, that we need to save a Bitmap instance to gallery as an Image File.

Let’s understand the above function.

  • We have the bitmap instance that we want to save to our gallery in the function parameter.
  • Then I’ve generated a file name using System . currentTimeMillis () , you apply your own logic here if you want a different file name. I used it just to generate a unique name quickly.
  • Now we have created an OutputStream instance.
  • The main thing here is we need to write two logics, because method of android 10 and above won’t work for lower versions; and that is why I have written a check here to identify if the device is > = VERSION_CODES . Q .
  • Inside the if block, first I’ve got the ContentResolver from the Context .
  • Inside ContentResolver , we have created ContentValues and inside ContentValues we have added the Image File informations.
  • Now we have got the Uri after inserting the content values using the insert () function.
  • After getting the Uri , we have opened output stream using openOutputStream () function.
  • I am not explaining the else part, as it is the old way, that we already know.
  • Finally using the output stream we are writing the Bitmap to stream using compress () function. And that’s it.

Now let’s build a complete application that will save image from an URL to the external storage.

Creating an Image Downloader Application

Again we will start by creating a new Android Studio project. I have created a project named ImageDownloader. And now we will start by adding all the required dependencies first.

Adding Permissions

For this app we require Internet and Storage permission. So define these permision in your AndroidManifest . xml file.

Источник

vxhviet / saveToExternalStorage.md

Question: How do I save Bitmap to extrenal storage in Android?

Answer:

Use this function to save your bitmap in SD card:

and add this in manifest

EDIT: By using this line you can able to see saved images in the gallery view. [UNTESTED]

This comment has been minimized.

Copy link Quote reply

ayush-sriv commented Aug 20, 2018

This comment has been minimized.

Copy link Quote reply

AbelWeldaregay commented Feb 19, 2019

How would you read it back in order to display it in an imageview?

This comment has been minimized.

Copy link Quote reply

Appiah commented Feb 26, 2019 •

public static Bitmap getBitmapThumbnail(Context context, Uri uri, double THUMBNAIL_SIZE) throws FileNotFoundException, IOException <
InputStream input = context.getContentResolver().openInputStream(uri);

thumbnail_size_in_double = 50.00;
bitmap = getBitmapThumbnail(context, «the_path_where_the/image/is_located_as_a/an/Uri», thumbnail_size_in_double);
imageView.setImageBitmap(bitmap);

//Please do test for yourself too very well before usage, it worked perfectly for me

You can’t perform that action at this time.

Читайте также:  Рпг для андроид 4пда

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.

Источник

benny-shotvibe / gist:1e0d745b7bc68a9c3256

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters

// This is an outdated way to do this.
// Inspired by:
// http://stackoverflow.com/questions/8560501/android-save-image-into-gallery/8722494#8722494
// https://gist.github.com/samkirton/0242ba81d7ca00b475b9
public static void saveImageToGallery( ContentResolver cr, String imagePath) <
String title = » Saved From Glance » ;
String description = title;
ContentValues values = new ContentValues ();
values . put( MediaStore . Images . Media . TITLE , title);
values . put( MediaStore . Images . Media . DISPLAY_NAME , title);
values . put( MediaStore . Images . Media . DESCRIPTION , description);
values . put( MediaStore . Images . Media . MIME_TYPE , » image/jpeg » );
// Add the date meta data to ensure the image is added at the front of the gallery
long millis = System . currentTimeMillis();
values . put( MediaStore . Images . Media . DATE_ADDED , millis / 1000L );
values . put( MediaStore . Images . Media . DATE_MODIFIED , millis / 1000L );
values . put( MediaStore . Images . Media . DATE_TAKEN , millis);
Uri url = null ;
try <
url = cr . insert( MediaStore . Images . Media . EXTERNAL_CONTENT_URI , values);
if (imagePath != null ) <
final int BUFFER_SIZE = 1024 ;
FileInputStream fileStream = new FileInputStream (imagePath);
try <
OutputStream imageOut = cr . openOutputStream(url);
try <
byte [] buffer = new byte [ BUFFER_SIZE ];
while ( true ) <
int numBytesRead = fileStream . read(buffer);
if (numBytesRead 0 ) <
break ;
>
imageOut . write(buffer, 0 , numBytesRead);
>
> finally <
imageOut . close();
>
> finally <
fileStream . close();
>
long id = ContentUris . parseId(url);
// Wait until MINI_KIND thumbnail is generated.
Bitmap miniThumb = MediaStore . Images . Thumbnails . getThumbnail(cr, id, MediaStore . Images . Thumbnails . MINI_KIND , null );
// This is for backward compatibility.
storeThumbnail(cr, miniThumb, id, 50F , 50F , MediaStore . Images . Thumbnails . MICRO_KIND );
> else <
cr . delete(url, null , null );
>
> catch ( Exception e) <
if (url != null ) <
cr . delete(url, null , null );
>
>
>
/**
* A copy of the Android internals StoreThumbnail method, it used with the insertImage to
* populate the android.provider.MediaStore.Images.Media#insertImage with all the correct
* meta data. The StoreThumbnail method is private so it must be duplicated here.
* @see android.provider.MediaStore.Images.Media (StoreThumbnail private method)
*/
private static Bitmap storeThumbnail(
ContentResolver cr,
Bitmap source,
long id,
float width,
float height,
int kind) <
// create the matrix to scale it
Matrix matrix = new Matrix ();
float scaleX = width / source . getWidth();
float scaleY = height / source . getHeight();
matrix . setScale(scaleX, scaleY);
Bitmap thumb = Bitmap . createBitmap(source, 0 , 0 ,
source . getWidth(),
source . getHeight(), matrix,
true
);
ContentValues values = new ContentValues ( 4 );
values . put( MediaStore . Images . Thumbnails . KIND , kind);
values . put( MediaStore . Images . Thumbnails . IMAGE_ID , ( int ) id);
values . put( MediaStore . Images . Thumbnails . HEIGHT , thumb . getHeight());
values . put( MediaStore . Images . Thumbnails . WIDTH , thumb . getWidth());
Uri url = cr . insert( MediaStore . Images . Thumbnails . EXTERNAL_CONTENT_URI , values);
try <
OutputStream thumbOut = cr . openOutputStream(url);
thumb . compress( Bitmap . CompressFormat . JPEG , 100 , thumbOut);
thumbOut . close();
return thumb;
> catch ( FileNotFoundException ex) <
return null ;
> catch ( IOException ex) <
return null ;
>
>

You can’t perform that action at this time.

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.

Источник

Пишем функцию сохранения картинок на SD-карту

В процессе написания приложения для андроида у меня возникла задача сохранять произвольное изображение в файл на флешке. В этой статье я опишу, как я решил эту проблему, какие трудности встретились мне в процессе, и как они были решены. Хотелось бы отдельно отметить, что я .NET программист, судьба занесла меня в Java-мир только из-за необходимости создания небольших по размеру (поэтому monodroid сразу нет) и довольно простых с точки зрения интерфейса андроид-приложений. Это означает, что я тоже только учусь, а значит буду рад любым советом и замечаниям профессионалов.

Читайте также:  Стоковые живые обои андроид

Итак, предположим, что у нас есть ImageView, в котором содержится картинка, необходимая нам в виде файла. Первый же вопрос — куда сохранять эту картинку?

Самый правильный и гуглом одобренный подход будет сохранять картинку в папку кэша специально выделенную для вашей аппликации.
Получить абсолютный путь к ней можно вызовом функции:

Данная папка очищается при деинсталляции приложения, кроме того ее размер отслеживается системой, и при нехватке места внутренней памяти, файлы оттуда будут автоматически удалены андроидом.

Есть у данного решения и минусы. Самый главный — папка кэша приложения содержится во внутренней памяти устройства, которой вечно не хватает. Рекомендуется сохранять там лишь временные и не очень большие файлы, сохранение большого количества тяжелых картинок здесь нежелательно.

Лучше воспользоваться папкой кэша приложения на SD-карте, путь к которой можно получить функцией:

Данная папка тоже будет очищена при деинсталляции приложения, но ее размер не отслеживается системой, поэтому перед сохранением туда файлов, ее состояние желательно проверять командой:

В моем случае по совокупности разных факторов оба стандартных решения показались мне неоптимальными, поэтому я просто сохраняю файлы в корне SD-карты, путь туда можно получить функцией:

Теперь о самой процедуре сохранения, ее код приведен ниже.

Несколько пояснений по коду.

Не очень изящное, но простое как карандаш и реально работающее решение получить уникальное имя для файла в формате удобном для сортировки — «2011 11 17 20 31 49.jpg»
Здесь всего одна маленькая хитрость. Обратили внимание на time.month+1?
Дело в том, что Java считает месяцы с нуля, и ноябрь получается 10м, а не 11м, как все привыкли, месяцем. Непорядок.

Тут тоже все самоочевидно, споры могут возникнуть лишь о процентах сжатия. Мне кажется, что 85% оптимальный вариант, но у каждого может быть свое мнение и свои условия задачи.

Интересный финт, о котором многие забывают. Не все андроид-пользователи продвинуты настолько, чтобы отыскать сохраненные вами файлы, даже если вы им показали путь файловой системы. Но вот про приложение «Фотоальбом» знают точно все (это там, где только что снятые фоточки можно посмотреть). Добавьте вышеупомянутую строчку в ваш код, и картинка не только сохранится в нужную директорию, но еще и зарегистрируется в фотоальбоме, и пользователь всегда ее отыщет ее без всяких проблем.

Кстати, приведенная функция взята из реального работающего приложения Random Pictures, которое показывает случайные картинки из Интернета, а в платной версии программы — имеет возможность сохранения любой картинки к себе на флешку.

Бесплатная версия Random Picture Free на андроид маркете Random Pictures Free

Описанная функция сохранения файла работает только в платной версии. Ее цена — 45 рублей, но для хабражителей — конечно же выкладывается бесплатно. (Хорошая традиция, надо сказать!) Ссылка от автора в комментариях.

Источник

Оцените статью