Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: ui/aura/root_window_host_linux.cc

Issue 10386124: Introduce XGetImage() for GrabWindowSnapshot() in ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/aura/root_window_host_linux.cc
diff --git a/ui/aura/root_window_host_linux.cc b/ui/aura/root_window_host_linux.cc
index 4f42775ff14aa9e8c40e44b6a4b72b2f86672dab..0d66156b7959c17589433dc66918d868978ee5a5 100644
--- a/ui/aura/root_window_host_linux.cc
+++ b/ui/aura/root_window_host_linux.cc
@@ -6,6 +6,7 @@
#include <X11/Xatom.h>
#include <X11/Xcursor/Xcursor.h>
+#include <X11/Xlib.h>
#include <X11/cursorfont.h>
#include <X11/extensions/XInput2.h>
#include <X11/extensions/Xfixes.h>
@@ -29,6 +30,7 @@
#include "ui/base/view_prop.h"
#include "ui/base/x/x11_util.h"
#include "ui/compositor/layer.h"
+#include "ui/gfx/codec/png_codec.h"
#include "ui/gfx/image/image.h"
using std::max;
@@ -804,6 +806,47 @@ void RootWindowHostLinux::SetFocusWhenShown(bool focus_when_shown) {
}
}
+bool RootWindowHostLinux::GrabSnapshot(
+ std::vector<unsigned char>* png_representation,
+ const gfx::Rect& snapshot_bounds) {
+ XImage* image = XGetImage(
+ xdisplay_, xwindow_,
+ snapshot_bounds.x(), snapshot_bounds.y(),
+ snapshot_bounds.width(), snapshot_bounds.height(),
+ AllPlanes, ZPixmap);
+
+ gfx::PNGCodec::ColorFormat color_format;
+
+ if (image->bits_per_pixel == 32) {
+ color_format = (image->byte_order == LSBFirst) ?
+ gfx::PNGCodec::FORMAT_BGRA : gfx::PNGCodec::FORMAT_RGBA;
+ } else if (image->bits_per_pixel == 24) {
+ // PNGCodec accepts FORMAT_RGB for 3 bytes per pixel:
+ color_format = gfx::PNGCodec::FORMAT_RGB;
+ if (image->byte_order == LSBFirst) {
+ LOG(WARNING) << "Converting BGR->RGB will damage the performance...";
+ int image_size =
+ image->width * image->height * image->bits_per_pixel / 8;
+ for (int i = 0; i < image_size; i += 3) {
+ char tmp = image->data[i];
+ image->data[i] = image->data[i+2];
+ image->data[i+2] = tmp;
+ }
+ }
+ } else {
+ LOG(ERROR) << "bits_per_pixel is too small";
Daniel Erat 2012/05/16 19:43:50 don't forget to XFree(image) before returning here
Jun Mukai 2012/05/16 21:43:57 Done.
+ return false;
+ }
+
+ unsigned char* data = reinterpret_cast<unsigned char*>(image->data);
+ gfx::PNGCodec::Encode(data, color_format, snapshot_bounds.size(),
+ image->width * image->bits_per_pixel / 8,
+ true, std::vector<gfx::PNGCodec::Comment>(),
+ png_representation);
+ XFree(image);
+ return true;
+}
+
void RootWindowHostLinux::PostNativeEvent(
const base::NativeEvent& native_event) {
DCHECK(xwindow_);

Powered by Google App Engine
This is Rietveld 408576698