-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAddressBookImages_sqlite.sql
More file actions
20 lines (16 loc) · 776 Bytes
/
Copy pathAddressBookImages_sqlite.sql
File metadata and controls
20 lines (16 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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