Questions tagged [heic]

A HEIC file is a raster image saved in the High Efficiency Image Format (HEIF), a lossy compressed media container format commonly used to store images. It may contain a single image, a collection of images, image bursts, or image sequences, along with metadata that describes each image. HEIC files may also appear as .HEIF files.

94 questions
5
votes
3 answers

Flutter: Picking images as jpg/png instead of heic on iOS

How can I pick images directly as jpg or png on iOS? If this feature isn't available: How can I convert it very fast and don't have to wait a long time? Edit: I want to prevent picking .heic because I have to send it to an server, which handles jpg…
st3ffb3
  • 398
  • 3
  • 15
5
votes
3 answers

convert .heic image to jpg image format in laravel

I have added intervention/image package to convert image format in laravel. image converted successfully but after uploading image quality was so bad. Original Image Uploaded Image $img =(string) Image::make($image['base64']) ->resize(500,…
priyeshvadhiya
  • 606
  • 3
  • 8
  • 27
5
votes
1 answer

Read EXIF data from HEIC photo using PHP

I want to read the EXIF data from a HEIC photo. If I run:
Terence Eden
  • 14,034
  • 3
  • 48
  • 89
4
votes
3 answers

How do I read a .HEIC/.HEIF image into (python) opencv for onward processing?

For a python project making heavy use of opencv/numpy/scipy, I would like to ingest a .HEIC/.HEIF image without first converting to any other format, e.g. JPEG etc. Is there a way to do this? This link implies…
jtlz2
  • 7,700
  • 9
  • 64
  • 114
4
votes
2 answers

Converting an HEIC image to Jpg and upload to the Server in Xamarin iOS

I am trying to convert the HEIC image to Jpg from below code in using Dependency Service and trying to display with Image and uploading to Web API.. But both are not working, Is it a correct way of doing HEIC conversion to Jpg? if not please suggest…
Ganesh
  • 924
  • 2
  • 12
  • 34
4
votes
0 answers

Uploading/Displaying iPhone HEIC images in flask using base64 strings yields broken images

I am using a file chooser to ask users for image files(png or jpeg). Whenever I upload photos taken from an iPhone the image appears incomplete. I am saving the uploaded images as bytes in a mysql database and then later converting them to base64…
Parth Patel
  • 135
  • 1
  • 4
  • 12
3
votes
3 answers

Gimp 2.10.22 has HEIC support but won't work?

I have Gimp 2.10.22 running, which should have HEIC support according to the release notes from last October. So I would have expected that an iOS-created .heic file should open up. Unfortunately, I just get the generic "Unknown file type" error…
slarocque
  • 69
  • 1
  • 6
3
votes
0 answers

Uploading .heic images in Rails 3.2 using paperclip gem

Users are unable to upload .heic images. Doesn't seem to be as simple as adding "images/heic" to content_type validations or just changing the file type to .jpg or .png. Is there a way to get this done using paperclip or should we use an API to…
moyejg
  • 125
  • 8
3
votes
2 answers

Angular 9: How to convert HEIF file format to a known web format when uploading images

I am mantaining a webapp (PWA) written in Angular 9, where users upload images and crop, rotate etc. in cropperjs. On iOS a new image format (HEIF) is becoming the standard and these users are complaining that they are not able to upload their…
Jette
  • 2,459
  • 28
  • 37
3
votes
0 answers

.HEIC file to .JPG not identified by PIL.Image

I am running a script to extract the EXIF data from a list of images in a folder that are imported from an iPhone using Python's pillow: from PIL import Image image = Image.open(path) But before anything, some of the pictures need to be converted…
everspader
  • 1,272
  • 14
  • 44
3
votes
1 answer

Can I use ImageMagick 7.0 with Firebase functions?

Trying to convert HEIC images to JPEG I am working with Firebase functions when a new image is uploaded to the Firebase Storage. It works when I run a test function locally in the firebase emulator, but fails when I try to run it on my Firebase…
3
votes
0 answers

How to access Image sequence in a HEIC file ( using C#)?

I want to access Image sequence contained in a Heic Container using C#. In windows 10, the HEIF Image Extensions enables reading (HEIF) files. It is supposed to be extended to WIC to be used by developers if the previously mentioned extension is…
Asem Khen
  • 317
  • 3
  • 15
3
votes
0 answers

Is it possible to access HEIF 'Image Properties' metadata like 'ispe' and 'colr' using Windows Imaging Component?

I know from the format specifications that HEIF files have Image Properties that can denote spacial extent ('ispe'), color information ('colr'), pixel information ('pixi'), etc. Is it possible to directly access those properties using WIC? I am able…
krisfed
  • 31
  • 2
3
votes
1 answer

Is .heic image supported by WKWebView on iOS 11?

I tried to load a .heic image using WKWebView.loadFileURL on iOS 11.4 but got a blank page. (I am sure the url is right as I can preview it in xcode)
John Smith
  • 153
  • 1
  • 7
2
votes
1 answer

How to convert .heic to .jpeg from Google Form before uploading into Google Drive using Google Apps Script

This is my first time programming with Google products so please bear with me. I created a Google Form that accepts photos as file input and places them in Google Drive in a target folder determined by the form responses. I started with this…