Bug 90755

Summary: Remove down-casting to BitmapImage in GraphicsContext::drawImage.
Product: WebKit Reporter: Dongseong Hwang <dongseong.hwang>
Component: ImagesAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: gram, koivisto, simon.fraser, skyul, thakis
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 90375, 90935    
Attachments:
Description Flags
Patch none

Description Dongseong Hwang 2012-07-08 23:56:43 PDT
Add a BitmapImage draw method which takes RespectImageOrientationEnum enum as the last argument for CG. Then we can remove the conditional down-casting in GraphicsContext::drawImage.

This change is needed for parallel image decoders. Because parallel image decoders use a Bitmap image wrapper class which extends Image (not Bitmap), the down-casting above causes the loss of RespectImageOrientationEnum which must be passed to BitmapImage.
Comment 1 Dongseong Hwang 2012-07-09 01:24:59 PDT
Created attachment 151211 [details]
Patch
Comment 2 Kwang Yul Seo 2012-07-12 18:27:10 PDT
Simon, this is a simple refactoring patch which removes a CG-specific conditional down-casting in GraphicsContext::drawImage. 

Because GraphicsContext already has a draw method with RespectImageOrientationEnum, there is no reason not to put the corresponding Image::draw method with RespectImageOrientationEnum in Image.
Comment 3 Kwang Yul Seo 2012-07-13 10:19:37 PDT
Comment on attachment 151211 [details]
Patch

Clearing flags on attachment: 151211

Committed r122598: <http://trac.webkit.org/changeset/122598>
Comment 4 Kwang Yul Seo 2012-07-13 10:19:42 PDT
All reviewed patches have been landed.  Closing bug.
Comment 5 Nico Weber 2012-10-22 15:50:55 PDT
How does this patch work? Before this patch, BitmapImage::draw would be called from GraphicsContext.cpp, which had an implementation that honored the image orientation in ImageCG.cpp (BitmapImage::draw()).

Now GraphicsContext calls Image::draw() on all platforms, which always throws away the orientation parameter. How does this patch not break image orientation on mac?
Comment 6 Dongseong Hwang 2012-10-22 19:35:54 PDT
(In reply to comment #5)
> How does this patch work? Before this patch, BitmapImage::draw would be called from GraphicsContext.cpp, which had an implementation that honored the image orientation in ImageCG.cpp (BitmapImage::draw()).
> 
> Now GraphicsContext calls Image::draw() on all platforms, which always throws away the orientation parameter. How does this patch not break image orientation on mac?

That's good question.

BitmapImage of mac only overrides Image::draw(). BitmapImage of other ports does not overrides Image::draw().

#if USE(CG)
    virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator, RespectImageOrientationEnum);
#endif

It means in mac if you call draw() of BitmapImage, Image::draw() is not called and BitmapImage::draw() of mac is called, which does not throw away the orientation parameter.

Please let me know if you have questions anymore :)
Comment 7 Nico Weber 2012-10-22 20:52:29 PDT
Thanks for explaining! I missed the inheritance relationship.