| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
| 4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. | 4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 double quality = UndefinedQualityValue; | 573 double quality = UndefinedQualityValue; |
| 574 if (!qualityArgument.isEmpty()) { | 574 if (!qualityArgument.isEmpty()) { |
| 575 v8::Local<v8::Value> v8Value = qualityArgument.v8Value(); | 575 v8::Local<v8::Value> v8Value = qualityArgument.v8Value(); |
| 576 if (v8Value->IsNumber()) { | 576 if (v8Value->IsNumber()) { |
| 577 quality = v8Value.As<v8::Number>()->Value(); | 577 quality = v8Value.As<v8::Number>()->Value(); |
| 578 } | 578 } |
| 579 } | 579 } |
| 580 return toDataURLInternal(mimeType, quality, BackBuffer); | 580 return toDataURLInternal(mimeType, quality, BackBuffer); |
| 581 } | 581 } |
| 582 | 582 |
| 583 void HTMLCanvasElement::toBlob(ScriptState* scriptState, BlobCallback* callback,
const String& mimeType, const ScriptValue& qualityArgument, ExceptionState& exc
eptionState) | 583 void HTMLCanvasElement::toBlob(BlobCallback* callback, const String& mimeType, c
onst ScriptValue& qualityArgument, ExceptionState& exceptionState) |
| 584 { | 584 { |
| 585 if (!originClean()) { | 585 if (!originClean()) { |
| 586 exceptionState.throwSecurityError("Tainted canvases may not be exported.
"); | 586 exceptionState.throwSecurityError("Tainted canvases may not be exported.
"); |
| 587 return; | 587 return; |
| 588 } | 588 } |
| 589 | 589 |
| 590 if (!isPaintable()) { | 590 if (!isPaintable()) { |
| 591 // If the canvas element's bitmap has no pixels | 591 // If the canvas element's bitmap has no pixels |
| 592 Platform::current()->mainThread()->taskRunner()->postTask(BLINK_FROM_HER
E, bind(&BlobCallback::handleEvent, callback, nullptr)); | 592 Platform::current()->mainThread()->taskRunner()->postTask(BLINK_FROM_HER
E, bind(&BlobCallback::handleEvent, callback, nullptr)); |
| 593 return; | 593 return; |
| 594 } | 594 } |
| 595 | 595 |
| 596 double quality = UndefinedQualityValue; | 596 double quality = UndefinedQualityValue; |
| 597 if (!qualityArgument.isEmpty()) { | 597 if (!qualityArgument.isEmpty()) { |
| 598 v8::Local<v8::Value> v8Value = qualityArgument.v8Value(); | 598 v8::Local<v8::Value> v8Value = qualityArgument.v8Value(); |
| 599 if (v8Value->IsNumber()) { | 599 if (v8Value->IsNumber()) { |
| 600 quality = v8Value.As<v8::Number>()->Value(); | 600 quality = v8Value.As<v8::Number>()->Value(); |
| 601 } | 601 } |
| 602 } | 602 } |
| 603 | 603 |
| 604 String encodingMimeType = toEncodingMimeType(mimeType); | 604 String encodingMimeType = toEncodingMimeType(mimeType); |
| 605 | 605 |
| 606 ImageData* imageData = toImageData(BackBuffer); | 606 ImageData* imageData = toImageData(BackBuffer); |
| 607 // imageData unref its data, which we still keep alive for the async toBlob
thread | 607 // imageData unref its data, which we still keep alive for the async toBlob
thread |
| 608 ScopedDisposal<ImageData> disposer(imageData); | 608 ScopedDisposal<ImageData> disposer(imageData); |
| 609 // Add a ref to keep image data alive until completion of encoding | 609 // Add a ref to keep image data alive until completion of encoding |
| 610 RefPtr<DOMUint8ClampedArray> imageDataRef(imageData->data()); | 610 RefPtr<DOMUint8ClampedArray> imageDataRef(imageData->data()); |
| 611 | 611 |
| 612 RefPtr<CanvasAsyncBlobCreator> asyncCreatorRef = CanvasAsyncBlobCreator::cre
ate(imageDataRef.release(), encodingMimeType, imageData->size(), callback, scrip
tState->executionContext()); | 612 RefPtr<CanvasAsyncBlobCreator> asyncCreatorRef = CanvasAsyncBlobCreator::cre
ate(imageDataRef.release(), encodingMimeType, imageData->size(), callback); |
| 613 | 613 |
| 614 if (Platform::current()->isThreadedCompositingEnabled() && (encodingMimeType
== DefaultMimeType)) { | 614 if (encodingMimeType == DefaultMimeType) { |
| 615 asyncCreatorRef->scheduleAsyncBlobCreation(true); | 615 asyncCreatorRef->scheduleAsyncBlobCreation(true); |
| 616 } else { | 616 } else { |
| 617 asyncCreatorRef->scheduleAsyncBlobCreation(false, quality); | 617 asyncCreatorRef->scheduleAsyncBlobCreation(false, quality); |
| 618 } | 618 } |
| 619 } | 619 } |
| 620 | 620 |
| 621 void HTMLCanvasElement::addListener(CanvasDrawListener* listener) | 621 void HTMLCanvasElement::addListener(CanvasDrawListener* listener) |
| 622 { | 622 { |
| 623 m_listeners.add(listener); | 623 m_listeners.add(listener); |
| 624 } | 624 } |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1016 } | 1016 } |
| 1017 return ImageBitmapSource::fulfillImageBitmap(scriptState, isPaintable() ? Im
ageBitmap::create(this, IntRect(sx, sy, sw, sh), options) : nullptr); | 1017 return ImageBitmapSource::fulfillImageBitmap(scriptState, isPaintable() ? Im
ageBitmap::create(this, IntRect(sx, sy, sw, sh), options) : nullptr); |
| 1018 } | 1018 } |
| 1019 | 1019 |
| 1020 bool HTMLCanvasElement::isOpaque() const | 1020 bool HTMLCanvasElement::isOpaque() const |
| 1021 { | 1021 { |
| 1022 return m_context && !m_context->hasAlpha(); | 1022 return m_context && !m_context->hasAlpha(); |
| 1023 } | 1023 } |
| 1024 | 1024 |
| 1025 } // namespace blink | 1025 } // namespace blink |
| OLD | NEW |