Canvas.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. // Copyright (c) 2010 LearnBoost <tj@learnboost.com>
  2. #pragma once
  3. #include "backend/Backend.h"
  4. #include <cairo.h>
  5. #include "dll_visibility.h"
  6. #include <nan.h>
  7. #include <pango/pangocairo.h>
  8. #include <v8.h>
  9. #include <vector>
  10. #include <cstddef>
  11. /*
  12. * FontFace describes a font file in terms of one PangoFontDescription that
  13. * will resolve to it and one that the user describes it as (like @font-face)
  14. */
  15. class FontFace {
  16. public:
  17. PangoFontDescription *sys_desc = nullptr;
  18. PangoFontDescription *user_desc = nullptr;
  19. unsigned char file_path[1024];
  20. };
  21. enum text_baseline_t : uint8_t {
  22. TEXT_BASELINE_ALPHABETIC = 0,
  23. TEXT_BASELINE_TOP = 1,
  24. TEXT_BASELINE_BOTTOM = 2,
  25. TEXT_BASELINE_MIDDLE = 3,
  26. TEXT_BASELINE_IDEOGRAPHIC = 4,
  27. TEXT_BASELINE_HANGING = 5
  28. };
  29. enum text_align_t : int8_t {
  30. TEXT_ALIGNMENT_LEFT = -1,
  31. TEXT_ALIGNMENT_CENTER = 0,
  32. TEXT_ALIGNMENT_RIGHT = 1,
  33. // Currently same as LEFT and RIGHT without RTL support:
  34. TEXT_ALIGNMENT_START = -2,
  35. TEXT_ALIGNMENT_END = 2
  36. };
  37. enum canvas_draw_mode_t : uint8_t {
  38. TEXT_DRAW_PATHS,
  39. TEXT_DRAW_GLYPHS
  40. };
  41. /*
  42. * Canvas.
  43. */
  44. class Canvas: public Nan::ObjectWrap {
  45. public:
  46. static Nan::Persistent<v8::FunctionTemplate> constructor;
  47. static void Initialize(Nan::ADDON_REGISTER_FUNCTION_ARGS_TYPE target);
  48. static NAN_METHOD(New);
  49. static NAN_METHOD(ToBuffer);
  50. static NAN_GETTER(GetType);
  51. static NAN_GETTER(GetStride);
  52. static NAN_GETTER(GetWidth);
  53. static NAN_GETTER(GetHeight);
  54. static NAN_SETTER(SetWidth);
  55. static NAN_SETTER(SetHeight);
  56. static NAN_METHOD(StreamPNGSync);
  57. static NAN_METHOD(StreamPDFSync);
  58. static NAN_METHOD(StreamJPEGSync);
  59. static NAN_METHOD(RegisterFont);
  60. static NAN_METHOD(DeregisterAllFonts);
  61. static v8::Local<v8::Value> Error(cairo_status_t status);
  62. static void ToPngBufferAsync(uv_work_t *req);
  63. static void ToJpegBufferAsync(uv_work_t *req);
  64. static void ToBufferAsyncAfter(uv_work_t *req);
  65. static PangoWeight GetWeightFromCSSString(const char *weight);
  66. static PangoStyle GetStyleFromCSSString(const char *style);
  67. static PangoFontDescription *ResolveFontDescription(const PangoFontDescription *desc);
  68. DLL_PUBLIC inline Backend* backend() { return _backend; }
  69. DLL_PUBLIC inline cairo_surface_t* surface(){ return backend()->getSurface(); }
  70. cairo_t* createCairoContext();
  71. DLL_PUBLIC inline uint8_t *data(){ return cairo_image_surface_get_data(surface()); }
  72. DLL_PUBLIC inline int stride(){ return cairo_image_surface_get_stride(surface()); }
  73. DLL_PUBLIC inline std::size_t nBytes(){
  74. return static_cast<std::size_t>(getHeight()) * stride();
  75. }
  76. DLL_PUBLIC inline int getWidth() { return backend()->getWidth(); }
  77. DLL_PUBLIC inline int getHeight() { return backend()->getHeight(); }
  78. Canvas(Backend* backend);
  79. void resurface(v8::Local<v8::Object> canvas);
  80. private:
  81. ~Canvas();
  82. Backend* _backend;
  83. };