Questions tagged [cairo]

5 questions
2
votes
1 answer

libcairo undefined symbol: FT_Get_Var_Design_Coordinates error when calling R from compiled MATLAB application on Centos7

I'm posting this question to document the solution to a problem which had me stuck for several weeks for which no answer was found on StackExchange or discussion boards. (Answer forthcoming) I'm trying to run a compiled matlab program (MATLAB 2017a)…
1
vote
1 answer

C++ linking error: 'libcairo.so: undefined reference to FT_Get_Var_Blend_Coordinates'

I'm trying to build a C++ project via CLion and have been unable to get past this error in the linking process: /lib/../lib64/libcairo.so: undefined reference to `FT_Get_Var_Blend_Coordinates' I'm wondering if anyone knows what the source of this…
ap84
  • 13
  • 2
0
votes
0 answers

Why does Arch's libcairo grayscale antialiasing, when Ubuntu's uses subpixel?

SciTE uses Cairo. On Ubuntu, it uses subpixel antialiasing, which I like. But unfortunately, on Arch Linux, it uses grayscale antialiasing, which I find too blurry for me. I already spent hours messing with fonts.conf and such, to no avail. Turns…
user541686
  • 3,033
  • 5
  • 28
  • 43
0
votes
0 answers

Passing Cario's dir to meson

While trying to build epiphany I received: Run-time dependency cairo found: NO (tried pkgconfig and cmake) meson.build:80:0: ERROR: Dependency "cairo" not found, tried pkgconfig and cmake Then I tried to pass cairo to…
user2752471
  • 237
  • 1
  • 2
  • 11
0
votes
1 answer

cairo graphics inside my_conky.lua is eating memory when I use surface_create_from_png

I tried adding images to my conky.lua with the following function function drawimage(cr,img) image = cairo_image_surface_create_from_png (img) cairo_set_source_surface (cr, image, screen.x, screen.y) cairo_paint (cr) …
Yunus
  • 1,634
  • 2
  • 13
  • 19