Image compression of SVG file changes mimetype to image/png
#828
Labels
backlog
Things that are not actively worked on and won't be in the near future
needs-investigation
Things that need investigation to properly classify them
Noticed that image compression changes the mimetype of an SVG to
image/png
. Combined with https://github.com/capsulesocial/capsule-orbit/issues/425, the image passes through to the backend successfully.There's a check before compression step in the post editor (
src/components/post/Editor.vue
) throwing an error that needs to be disabled:To confirm that mimetype changes due to compression, I disabled it and verified the mimetype of the resultant data URL (it was
image/svg+xml
:Now I am not sure exactly what happens to the image raw data, because that the image gets rendered correctly on the post reader. I am opening an issue since we should probably check if the image raw data is an SVG after compression, or a PNG. Might need to consider security implications if it's an SVG (how the image is loaded on the reader etc.).
The text was updated successfully, but these errors were encountered: