-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change createImageBitMaps's imageOrientation attributes #8687
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here's an initial review focused on wording stuff. Hope it's helpful!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you so much for the initial review!!
I assume the 'from-image' and 'none' imageOrientation options are intended to apply to ImageBitmaps created from HTMLVideo elements. If so are wpt tests for this needed? This would clarify the following FF bug https://bugzilla.mozilla.org/show_bug.cgi?id=1593790 |
Per new spec proposed here, whatwg/html#8687, users can now use the option {imageOrientation: 'none'} in CreateImageBitmap to specify display the image with exif orientation. Note that all the implementation is under flag "CreateImageBitmapOrientationNone", which can also be enabled with flag "--enable-experimental-web-platform-features" Bug: 1342260 Change-Id: I8d00c3592eec756b8465b1b32177db2147fd295d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4185242 Commit-Queue: Yi Xu <[email protected]> Code-Coverage: Findit <[email protected]> Reviewed-by: Justin Novosad <[email protected]> Cr-Commit-Position: refs/heads/main@{#1101774}
This mainly applies to images with specified orientation in EXIF (Exchangeable image file format) metadata. One setting ignore the orientation and one setting uses the orientation. I have added tests here: web-platform-tests/wpt#38654 |
The reason I mention it is that chrome follows image rotation settings* in imageBitmaps created from Video elements while Firefox doesn't. They also diverge when creating WebGL textures directly from Video elements. Not EXIF but have the same effect. |
This change of spec is supposed to clear that ambiguity. Chrome uses to use the option "none" to say no additional change follow the orientation in the metadata; where Firefox uses "none" as disregard the rotation settings. I first introduced the new option "from-image" to describe what Chrome follows, which also matches the CSS spec. In this change, I am hoping to repurpose the meaning of 'none'. I also submitted a bug for firefox to ask them to use the rotational setting for 'from-image' option. |
do we know how much this feature has been used, in other words, do we think the change is web compatible? |
@yiyix Incidentally I have submitted a patch to fix one of the FF imageBitmap from HTMLImage rotation bugs and have another patch ready to fix the HTMLVideo case for imageBitmaps. |
As of Safari 17.2 the change from I added a "needs tests" label in May, but I don't recall why. Tests are referenced above. Are more tests needed? |
This is step 2 in #8085 (comment). Fixes #8085.
At least two implementers are interested (and none opposed):
Tests are written and can be reviewed and commented upon at:
Implementation bugs are filed:
MDN issue is filed: Add a new option "ImageOrientation: none" to CreateImageBitmap mdn/content#24857
(See WHATWG Working Mode: Changes for more details.)
/imagebitmap-and-animations.html ( diff )