Home
last modified time | relevance | path

Searched refs:toDataURL (Results 1 – 25 of 28) sorted by relevance

12

/external/webkit/Source/WebCore/html/
DHTMLCanvasElement.h94 String toDataURL(const String& mimeType, const double* quality, ExceptionCode&);
95 … String toDataURL(const String& mimeType, ExceptionCode& ec) { return toDataURL(mimeType, 0, ec); } in toDataURL() function
DHTMLCanvasElement.idl37 [Custom] DOMString toDataURL(in [ConvertUndefinedOrNullToNullString] DOMString type)
DHTMLCanvasElement.cpp347 String HTMLCanvasElement::toDataURL(const String& mimeType, const double* quality, ExceptionCode& e… in toDataURL() function in WebCore::HTMLCanvasElement
374 return buffer()->toDataURL(lowercaseMimeType, quality); in toDataURL()
/external/webkit/Source/WebCore/dom/
DCanvasSurface.cpp81 String CanvasSurface::toDataURL(const String& mimeType, const double* quality, ExceptionCode& ec) in toDataURL() function in WebCore::CanvasSurface
95 return buffer()->toDataURL("image/png"); in toDataURL()
97 return buffer()->toDataURL(lowercaseMimeType, quality); in toDataURL()
/external/webkit/Source/WebCore/bindings/js/
DJSHTMLCanvasElementCustom.cpp91 JSValue JSHTMLCanvasElement::toDataURL(ExecState* exec) in toDataURL() function in WebCore::JSHTMLCanvasElement
108 result = jsString(exec, canvas->toDataURL(type, qualityPtr, ec)); in toDataURL()
/external/webkit/Source/WebCore/platform/graphics/gtk/
DImageBufferGtk.cpp35 String ImageBuffer::toDataURL(const String& mimeType, const double* quality) const in toDataURL() function in WebCore::ImageBuffer
/external/webkit/Source/WebCore/platform/graphics/wx/
DImageBufferWx.cpp85 String ImageBuffer::toDataURL(const String&, const double*) const in toDataURL() function in WebCore::ImageBuffer
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/
Dqtwebkit_bridge_snippets.cpp16 toDataURL: function() { ... }, in wrapInFunction()
/external/webkit/Source/WebCore/platform/graphics/
DImageBuffer.h95 String toDataURL(const String& mimeType, const double* quality = 0) const;
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8HTMLCanvasElementCustom.cpp112 String result = canvas->toDataURL(type, qualityPtr, ec); in toDataURLCallback()
/external/webkit/Source/WebCore/platform/graphics/android/
DImageBufferAndroid.cpp249 String ImageBuffer::toDataURL(const String&, const double*) const in toDataURL() function in WebCore::ImageBuffer
/external/webkit/Source/WebCore/platform/graphics/wince/
DImageBufferWinCE.cpp251 String ImageBuffer::toDataURL(const String& mimeType, const double*) const in toDataURL() function in WebCore::ImageBuffer
/external/webkit/Source/WebCore/platform/graphics/haiku/
DImageBufferHaiku.cpp319 String ImageBuffer::toDataURL(const String& mimeType, const double*) const in toDataURL() function in WebCore::ImageBuffer
/external/webkit/Source/WebCore/platform/graphics/cairo/
DImageBufferCairo.cpp304 String ImageBuffer::toDataURL(const String& mimeType, const double*) const in toDataURL() function in WebCore::ImageBuffer
/external/webkit/Source/WebCore/platform/graphics/cg/
DImageBufferCG.cpp346 String ImageBuffer::toDataURL(const String& mimeType, const double* quality) const in toDataURL() function in WebCore::ImageBuffer
/external/webkit/Source/WebCore/platform/graphics/skia/
DImageBufferSkia.cpp375 String ImageBuffer::toDataURL(const String& mimeType, const double* quality) const in toDataURL() function in WebCore::ImageBuffer
/external/webkit/Source/WebCore/platform/graphics/qt/
DImageBufferQt.cpp399 String ImageBuffer::toDataURL(const String& mimeType, const double* quality) const in toDataURL() function in WebCore::ImageBuffer
/external/webkit/Source/WebKit/qt/docs/
Dqtwebkit-bridge.qdoc363 …c{<img>} element with \c{assignToHTMLImageElement()}. It can also use the \c{toDataURL()} function,
364 …s the \c{src} attribute of an image or as a \c{background-image} URL. Note that the \c{toDataURL()}
/external/webkit/Source/WebKit/gtk/
DNEWS33 Bug 55878 - [Gtk] toDataURL uses incorrect quality value when saving GdkPixbuf to buffer (Zan Dober…
/external/webkit/Source/WebCore/
DChangeLog-2010-12-061728 [chromium] Add canvas.toDataURL("image/jpeg", quality) support
1738 result of canvas/philip/tests/toDataURL.jpeg.alpha.html; that test ignores the
1739 alpha channel when extracting an "image/jpeg".toDataURL(). The correct answer
1742 Canvas toDataURL is covered by existing tests canvas/philip/tests/toDataURL.*,
1743 and fast/canvas/*toDataURL* tests.
1748 here, just pass the toDataURL parameters through to the canvas layer.
1753 (WebCore::ImageBuffer::toDataURL): add jpeg encoding and quality support.
33117 (WebCore::ImageBuffer::toDataURL):
33121 (WebCore::ImageBuffer::toDataURL):
33123 (WebCore::ImageBuffer::toDataURL):
[all …]
DChangeLog-2011-02-163043 Fix toDataURL() to use device->readPixels() if need be, rather than always dereferencing
3051 (WebCore::ImageBuffer::toDataURL):
28916 [chromium] canvas.toDataURL("image/jpeg") should composite onto black.
28933 Covered by canvas/philip/tests/toDataURL.jpeg.alpha.html
37275 [chromium] Reduce canvas.toDataURL("image/png") run-time costs 300%
37297 [chromium] Optimize canvas.toDataURL("image/png") unpremultiplication loop
37304 No new tests: canvas.toDataURL() is covered by existing tests.
39372 canvas.toDataURL("image/png") is covered by existing tests.
42929 [chromium] Reduce canvas.toDataURL("image/jpeg") run-time cost by 10%
42936 No new tests: canvas.toDataURL() is covered by existing tests.
[all …]
DChangeLog-2008-08-103451 … <rdar://problem/5788451> toDataURL not implemented for Windows (need mapping of MIME type to UTI)
3452 Add additional support for JPEG and GIF for toDataURL encoding canvases.
32389 (WebCore::ImageBuffer::toDataURL):
35491 (WebCore::ImageBuffer::toDataURL): Tweak a little bit, removing one local variable and
38726 toDataURL not implemented for Windows (need mapping of MIME type to UTI)
38734 (WebCore::ImageBuffer::toDataURL):
42494 HTMLCanvasElement::toDataURL().
42501 (WebCore::HTMLCanvasElement::toDataURL):
43197 - fix garbage in transparent areas in canvas.toDataURL results
43200 (WebCore::ImageBuffer::toDataURL): Clear the bitmap context before
[all …]
DChangeLog-2010-05-245495 Canvas's toDataURL() should be case insensitive wrt the mimeType argument.
5501 Test: fast/canvas/canvas-toDataURL-case-insensitive-mimetype.html
5504 (WebCore::CanvasSurface::toDataURL):
5640 (WebCore::CanvasSurface::toDataURL):
5646 Canvas's toDataURL() should be case insensitive wrt the mimeType argument.
5652 Test: fast/canvas/canvas-toDataURL-case-insensitive-mimetype.html
5655 (WebCore::CanvasSurface::toDataURL):
18424 (WebCore::ImageBuffer::toDataURL):
31988 (WebCore::CanvasSurface::toDataURL): Just moved from HTMLCanvasElement and
49775 Optimize ImageBuffer::toDataURL's CG implementation
[all …]
DChangeLog18462 (WebCore::HTMLCanvasElement::toDataURL):
21979 [chromium] Fix canvas.toDataURL mimeType assertion
21982 Following r81213, reassert expected toDataURL() mimeType, remove an unused variable.
21988 (WebCore::ImageBuffer::toDataURL):
39660 No new tests. Covered by existing canvas.toDataURL tests.
44006 Non-premultiplied-alpha canvas attribute is ignore for toDataURL, drawImage, texImage2D
44017 (WebCore::HTMLCanvasElement::toDataURL):
44029 (WebCore::ImageBuffer::toDataURL):
44040 (WebCore::ImageBuffer::toDataURL):
50871 [Gtk] toDataURL uses incorrect quality value when saving GdkPixbuf to buffer
[all …]
/external/webkit/Source/WebKit/chromium/
DChangeLog3968 Non-premultiplied-alpha canvas attribute is ignore for toDataURL, drawImage, texImage2D

12