Dhruv
Dhruv

Reputation: 1129

BlackBerry-Storing images in PersistentStore

Can i store images in PersistentStore? is it advisable? What is your experience? I want to store images what is better file system or persistentstore? what are its pros and cons?

Upvotes: 3

Views: 505

Answers (1)

Vivart
Vivart

Reputation: 15313

Can i store images in PersistentStore?

Yes this is possible. You can use the Bitmap.getARGB method to obtain a byte array of the Bitmap. Then store its contents in a ByteVector. can bitmap be saved to persistent store?

What is your experience?

  1. From file system user can delete files.
  2. file system read/write is slower than persistence store.

Upvotes: 4

Related Questions