master
Costas K 5 years ago committed by GitHub
parent 02b963d8cf
commit d5ad33c841
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,20 @@
-- References:
-- https://docs.microsoft.com/en-us/dotnet/api/addressbook.abpersonimageformat?view=xamarin-ios-sdk-12
Select
ABFullSizeImage.record_id as 'RecordID', -- Should correspond to respective ROWID of the ABperson table in Addressbook.sqlite
ABFullSizeImage.crop_x||' x '||ABFullSizeImage.crop_y as 'Crop(xy)',
ABFullSizeImage.crop_width as 'CropWidth',
ABFullSizeImage.data as 'Image(blob)',
ABThumbnailImage.data as 'Thumbnail(blob)',
ABThumbnailImage.format as 'ImageFormat',
case ABThumbnailImage.derived_from_format
when 0 then 'Thumbnail'
when 2 then 'OriginalSize'
else ABThumbnailImage.derived_from_format
end as 'DerivedFrom'
from ABfullsizeimage
join ABThumbnailImage on ABThumbnailImage.record_id = ABFullSizeImage.record_id
Loading…
Cancel
Save