I get contact photo URI
Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, Long.valueOf(contactID));
And I can now show this photo with Picaso:
Picasso.with(mainUserPhoto.getContext())
.load(uri)
.placeholder(R.drawable.image_placeholder)
.error(R.drawable.folder_placeholder)
.into(mainUserPhoto);
It is worked. But I need copy this image to my folder too. How can I copy this contact photo to my Folder?