SnpDeveloper commented on issue #711:
URL: 
https://github.com/apache/cordova-plugin-camera/issues/711#issuecomment-842860257


   Only way i was able to achieve / make heic file type to convert jpeg is 
modifying CameraLauncher.java
   
   Line 718:
   ` if (this.mediaType == VIDEO || !(JPEG_MIME_TYPE.equalsIgnoreCase(mimeType) 
|| PNG_MIME_TYPE.equalsIgnoreCase(mimeType))) { `
   
   To
   `if (this.mediaType == VIDEO && 
!(JPEG_MIME_TYPE.equalsIgnoreCase(mimeType))) {`
   
   There should be a better way... for me this helped..
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to