Question

  • Creator
    Topic
  • #4310577

    Is there a more efficient encoding scheme for iOS 18.5 so that photos are r

    by gavottetreat03 ·

    Is there binary-to-text encoding scheme to get less characters count than Base64 to encode data, such as images or files, so that it can be safely transmitted over text-based protocols like HTTP or email?

    Because I am attempting to add photos such as building layout and visit hours to contact to alleviate my senior friends from browsing websites and also consumes mobile data.

    Unfortunately iOS 18.5 contact app doesn’t allow photo, I am trying photos as base64 url. After adding two base64 url, contact app starts freezing.

    binary-to-text encoding scheme to get less characters count than Base64? I suspect contact app freezes under excessive characters. I am using photo instead of webpage for helpers who shun websites. Since contact app lack photo field, I am adding photos as text. After adding two base64 url, contact app starts freezing.

    Is there a more efficient encoding scheme for iOS 18.5 so that photos are readable with less characters count than base64?

You are posting a reply to: Is there a more efficient encoding scheme for iOS 18.5 so that photos are r

The posting of advertisements, profanity, or personal attacks is prohibited. Please refer to our Community FAQs for details. All submitted content is subject to our Terms of Use.

All Answers

  • Author
    Replies
    • #4310591
      Avatar photo

      Reply To: Is there a more efficient encoding scheme for iOS 18.5 so that photos are r

      by kees_b ·

      In reply to Is there a more efficient encoding scheme for iOS 18.5 so that photos are r

      https://en.wikipedia.org/wiki/Base64 tells how it works.

      Base256 is meaningless, because it would be identical. Base128 would save 12.5% space, but result in characters that won’t be accepted by the contact app. So Base64 is the best you can use to encode an image to text.

      E-mail encodes files like pictures, zip-files and executable programs already into normal text with a comparable scheme. Any open source mail-program like Firefox can tell you all the details.

      How would your senior friends (via WiFi or mobile data) see the pictures that are encoded in your contact data? E-mail seems a more easy way to send pictures if you don’t want to put them on a website.

      • This reply was modified 1 month ago by Avatar photokees_b.
Viewing 0 reply threads