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
Implementation for ImageBitmap #26009
Merged
+99
−30
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.
| @@ -0,0 +1,58 @@ | ||
| /* This Source Code Form is subject to the terms of the Mozilla Public | ||
| * License, v. 2.0. If a copy of the MPL was not distributed with this | ||
| * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ | ||
|
|
||
| use crate::dom::bindings::cell::DomRefCell; | ||
|
|
||
| use crate::dom::bindings::codegen::Bindings::ImageBitmapBinding::ImageBitmapMethods; | ||
| use crate::dom::bindings::root::DomRoot; | ||
| use crate::dom::globalscope::GlobalScope; | ||
|
|
||
| use crate::dom::bindings::error::Fallible; | ||
| use crate::dom::bindings::reflector::{reflect_dom_object, Reflector}; | ||
| use dom_struct::dom_struct; | ||
|
|
||
| use std::vec::Vec; | ||
|
|
||
| #[dom_struct] | ||
| pub struct ImageBitmap { | ||
| reflector_: Reflector, | ||
| width: u32, | ||
| height: u32, | ||
| bitmap_data: DomRefCell<Vec<u8>>, | ||
| } | ||
|
|
||
| impl ImageBitmap { | ||
| fn new_inherited(width_arg: u32, height_arg: u32) -> ImageBitmap { | ||
| ImageBitmap { | ||
| reflector_: Reflector::new(), | ||
| width: width_arg, | ||
| height: height_arg, | ||
| bitmap_data: DomRefCell::new(vec![]), | ||
| } | ||
| } | ||
|
|
||
| #[allow(dead_code)] | ||
| pub fn new(global: &GlobalScope, width: u32, height: u32) -> Fallible<DomRoot<ImageBitmap>> { | ||
|
This conversation was marked as resolved
by jdm
|
||
| //assigning to a variable the return object of new_inherited | ||
| let imagebitmap = Box::new(ImageBitmap::new_inherited(width, height)); | ||
|
|
||
| Ok(reflect_dom_object(imagebitmap, global)) | ||
| } | ||
| } | ||
|
|
||
| impl ImageBitmapMethods for ImageBitmap { | ||
| // https://html.spec.whatwg.org/multipage/#dom-imagebitmap-height | ||
| fn Height(&self) -> u32 { | ||
| //to do: add a condition for checking detached internal slot | ||
| //and return 0 if set to true | ||
| self.height | ||
| } | ||
|
|
||
| // https://html.spec.whatwg.org/multipage/#dom-imagebitmap-width | ||
| fn Width(&self) -> u32 { | ||
| //to do: add a condition to check detached internal slot | ||
| ////and return 0 if set to true | ||
| self.width | ||
| } | ||
| } | ||
| @@ -0,0 +1,36 @@ | ||
| /* This Source Code Form is subject to the terms of the Mozilla Public | ||
| * License, v. 2.0. If a copy of the MPL was not distributed with this | ||
| * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ | ||
| /* | ||
| * The origin of this IDL file is | ||
| * https://html.spec.whatwg.org/multipage/#imagebitmap | ||
| * | ||
| * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and Opera Software ASA. | ||
| * You are granted a license to use, reproduce and create derivative works of this document. | ||
| */ | ||
|
|
||
| //[Exposed=(Window,Worker), Serializable, Transferable] | ||
| [Exposed=(Window,Worker)] | ||
| interface ImageBitmap { | ||
| readonly attribute unsigned long width; | ||
| readonly attribute unsigned long height; | ||
| //void close(); | ||
| }; | ||
|
|
||
| typedef (CanvasImageSource or | ||
| Blob or | ||
| ImageData) ImageBitmapSource; | ||
|
|
||
| enum ImageOrientation { "none", "flipY" }; | ||
| enum PremultiplyAlpha { "none", "premultiply", "default" }; | ||
| enum ColorSpaceConversion { "none", "default" }; | ||
| enum ResizeQuality { "pixelated", "low", "medium", "high" }; | ||
|
|
||
| dictionary ImageBitmapOptions { | ||
| ImageOrientation imageOrientation = "none"; | ||
| PremultiplyAlpha premultiplyAlpha = "default"; | ||
| ColorSpaceConversion colorSpaceConversion = "default"; | ||
| [EnforceRange] unsigned long resizeWidth; | ||
| [EnforceRange] unsigned long resizeHeight; | ||
| ResizeQuality resizeQuality = "low"; | ||
| }; |
ProTip!
Use n and p to navigate between commits in a pull request.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Since there are no callers for this code yet, we'll need a
#[allow(dead_code)]to avoid warnings I believe.