Welcome!
This is the community forum for my apps Pythonista and Editorial.
For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.
Has CNContactImageData been changed?
-
I have developed the library compatible w/ contacts, and yet handle Google contacts at the same time, importing obj_util library.
After upgrading iOS to 16.4.1, contact.image_data of my library returns funny string as follows;
{length = 4107, bytes = 0xffd8ffe0 00104a46 4946001 0100001 ... cd7d516a 86cfffd9 }This is the data as it is, " ... " is NOT my abbreviation.
Standard contacts library works just fine.
Does anybody know if there has been any change to iOS? Was image data banned just like note was?
-
@osamu I use Pythonista contacts module and Person.image_data still works like before.
I have an IPad Air 5 under iPadOS 16.4.1.I did not try to print image_data but I use it to create an ui.Image via
img = ui.Image.from_data(person.image_data)