In MonoTouch:
I am putting in an image from the Camera into the PhotoAlbum:
ALAssetsLibrary library = new ALAssetsLibrary();
library.WriteImageToSavedPhotosAlbum(photo.CGImage, meta, (assetUrl, error) => {
library.AssetForUrl(assetUrl, GotAsset, FailedGotAsset);
});
The Photo
is all there, works well.
On the delegate GotAsset
I am attempting to get out the image, but only the Thumbnail is there. Where is the image?
void GotAsset(ALAsset asset)
{
//asset has only thumbnail info???
}
Here's what the asset looks like: