In MonoTouch:
I put the image from the camera in PhotoAlbum:
ALAssetsLibrary library = new ALAssetsLibrary();
library.WriteImageToSavedPhotosAlbum(photo.CGImage, meta, (assetUrl, error) => {
library.AssetForUrl(assetUrl, GotAsset, FailedGotAsset);
});
Photo everything there works well.
As a delegate, GotAssetI'm trying to display an image, but there is only a Thumbnail. Where is the image?
void GotAsset(ALAsset asset)
{
}
Here's what the object looks like:

source
share