Guest User

Untitled

a guest
Aug 1st, 2018
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Vala 0.45 KB | None | 0 0
  1. int width;
  2. int height;
  3. int rowstride;
  4. bool has_alpha;
  5. int bits_per_sample;
  6. int channels;
  7. weak Array<uint8> data;
  8.  
  9. //hints is a GLib.HashTable<string, Variant>
  10. hints.lookup ("image_data").get ("(iiibiiay)", out width, out height, out rowstride,
  11.      out has_alpha, out bits_per_sample, out channels, out data);
  12.  
  13. var pix = new Gdk.Pixbuf.from_data ((uint8[])data, Gdk.Colorspace.RGB, has_alpha,
  14.     bits_per_sample, width, height, rowstride, null);
Add Comment
Please, Sign In to add comment