From 8e20859f98672855033eab731aafd80fe813dd85 Mon Sep 17 00:00:00 2001 From: Greg Dubicki <566632+gdubicki@users.noreply.github.com> Date: Thu, 11 Apr 2024 17:05:00 +0100 Subject: [PATCH 1/3] Update the state of browser HEIC support as Safari 17+ does support it now (see https://caniuse.com/heif) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 2aba274..16ab34e 100644 --- a/readme.md +++ b/readme.md @@ -13,7 +13,7 @@ Client-side (browser-side, using Javascript) conversion of [HEIC/HEIF](http://ww While developing some web-based application that should be able to handle mobile uploads, I've come across a problem where browsers can not display certain images uploaded from the iPhone, after investigating through the issue, I noticed that that my iPhone was giving a `heic` formatted image. -Currently there are [zero web browsers](https://caniuse.com/#search=heif) that support HEIC photos. Even Apple's latest-greatest version of Safari can't decode HEIC and doesn't recognize the "image/heic" mimetype. A solution that came across my mind is to utilize the benefits of high resolution and low storage of heic images when storing in the server and client-side conversion to JPEG for viewing on the browser. +Currently there is [only 1 web browser](https://caniuse.com/#search=heif) that support HEIC photos - Safari 17+. A solution that came across my mind is to utilize the benefits of high resolution and low storage of heic images when storing in the server and client-side conversion to JPEG for viewing on the browser. ### Usage and limitations From 09bb5a27d347990bf343f4653bea7155b3a5021f Mon Sep 17 00:00:00 2001 From: Greg Dubicki <566632+gdubicki@users.noreply.github.com> Date: Thu, 11 Apr 2024 17:12:49 +0100 Subject: [PATCH 2/3] Tweak language and link --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 16ab34e..52f34ce 100644 --- a/readme.md +++ b/readme.md @@ -13,7 +13,7 @@ Client-side (browser-side, using Javascript) conversion of [HEIC/HEIF](http://ww While developing some web-based application that should be able to handle mobile uploads, I've come across a problem where browsers can not display certain images uploaded from the iPhone, after investigating through the issue, I noticed that that my iPhone was giving a `heic` formatted image. -Currently there is [only 1 web browser](https://caniuse.com/#search=heif) that support HEIC photos - Safari 17+. A solution that came across my mind is to utilize the benefits of high resolution and low storage of heic images when storing in the server and client-side conversion to JPEG for viewing on the browser. +Currently there is [only 1 web browser]([https://caniuse.com/#search=heif](https://caniuse.com/heif)) that supports HEIC photos and only in its latest versions - Safari 17+. A solution that came across my mind is to utilize the benefits of high resolution and low storage of heic images when storing in the server and client-side conversion to JPEG for viewing on the browser. ### Usage and limitations From 2c490bc0ba8440889023d778603cc1c921850530 Mon Sep 17 00:00:00 2001 From: Greg Dubicki <566632+gdubicki@users.noreply.github.com> Date: Thu, 11 Apr 2024 17:13:57 +0100 Subject: [PATCH 3/3] Even more lang tweaks --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 52f34ce..2a5a2ba 100644 --- a/readme.md +++ b/readme.md @@ -13,7 +13,7 @@ Client-side (browser-side, using Javascript) conversion of [HEIC/HEIF](http://ww While developing some web-based application that should be able to handle mobile uploads, I've come across a problem where browsers can not display certain images uploaded from the iPhone, after investigating through the issue, I noticed that that my iPhone was giving a `heic` formatted image. -Currently there is [only 1 web browser]([https://caniuse.com/#search=heif](https://caniuse.com/heif)) that supports HEIC photos and only in its latest versions - Safari 17+. A solution that came across my mind is to utilize the benefits of high resolution and low storage of heic images when storing in the server and client-side conversion to JPEG for viewing on the browser. +Currently there is [only 1 web browser](https://caniuse.com/heif) that supports HEIC photos and only in its latest major version - Safari 17+. A solution that came across my mind is to utilize the benefits of high resolution and low storage of heic images when storing in the server and client-side conversion to JPEG for viewing on the browser. ### Usage and limitations