OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2008, Google Inc. All rights reserved. | 2 * Copyright (c) 2008, Google Inc. All rights reserved. |
3 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 3 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
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 are | 7 * modification, are permitted provided that the following conditions are |
8 * met: | 8 * met: |
9 * | 9 * |
10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
(...skipping 12 matching lines...) Expand all Loading... |
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
31 */ | 31 */ |
32 | 32 |
33 #include "sky/engine/config.h" | |
34 #include "sky/engine/platform/graphics/ImageBuffer.h" | 33 #include "sky/engine/platform/graphics/ImageBuffer.h" |
35 | 34 |
36 #include "platform/image-encoders/skia/JPEGImageEncoder.h" | 35 #include "platform/image-encoders/skia/JPEGImageEncoder.h" |
37 #include "platform/image-encoders/skia/PNGImageEncoder.h" | 36 #include "platform/image-encoders/skia/PNGImageEncoder.h" |
38 #include "sky/engine/platform/MIMETypeRegistry.h" | 37 #include "sky/engine/platform/MIMETypeRegistry.h" |
39 #include "sky/engine/platform/geometry/IntRect.h" | 38 #include "sky/engine/platform/geometry/IntRect.h" |
40 #include "sky/engine/platform/graphics/BitmapImage.h" | 39 #include "sky/engine/platform/graphics/BitmapImage.h" |
41 #include "sky/engine/platform/graphics/GraphicsContext.h" | 40 #include "sky/engine/platform/graphics/GraphicsContext.h" |
42 #include "sky/engine/platform/graphics/GraphicsTypes3D.h" | 41 #include "sky/engine/platform/graphics/GraphicsTypes3D.h" |
43 #include "sky/engine/platform/graphics/ImageBufferClient.h" | 42 #include "sky/engine/platform/graphics/ImageBufferClient.h" |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 if (!encodeImage(imageData, mimeType, quality, &encodedImage)) | 421 if (!encodeImage(imageData, mimeType, quality, &encodedImage)) |
423 return "data:,"; | 422 return "data:,"; |
424 | 423 |
425 Vector<char> base64Data; | 424 Vector<char> base64Data; |
426 base64Encode(encodedImage, base64Data); | 425 base64Encode(encodedImage, base64Data); |
427 | 426 |
428 return "data:" + mimeType + ";base64," + base64Data; | 427 return "data:" + mimeType + ";base64," + base64Data; |
429 } | 428 } |
430 | 429 |
431 } // namespace blink | 430 } // namespace blink |
OLD | NEW |