[ft] Cross compiling for arm (python for android)

2015-03-22 Thread Oliver Marks
I am trying to build the freetype library for android currently it seems to build correctly but i do not get the files i am expecting. if i run ./configure --host=arm-eabi i get the files below ./build/freetype/freetype-2.5. 5/objs/libfreetype.la

Re: [ft] Cross compiling for arm (python for android)

2015-03-22 Thread suzuki toshiya
Hi Oliver, According to http://pastebin.ubuntu.com/10650897/ : checking whether the arm-linux-androideabi-gcc -DANDROID -mandroid -fomit-frame-pointer --sysroot /home/oly/.buildozer/android/platform/android-ndk-r9d/platforms/android-14/arch-arm linker (arm-linux-androideabi-ld) supports

[ft] Opentype support of specual characters

2015-03-22 Thread g.po...@polte-media.com
Hello, is it possible to use the special characters like ö, ü, ö, ß from opentype (otf) fonts in PHP? I tried to that and it was not possible. I only get a square output. I used this: ImageTTFText ($image, 30, 0, 0, 40, $font,tmp/AnieneNuovaEF-Regular.otf,$text); With TTF fonts it was

Re: [ft] Cross compiling for arm (python for android)

2015-03-22 Thread Oliver Marks
Thanks a lot suzuki That pointed me in the right direction i am now using try ./configure --build=i686-pc-linux-gnu --host=arm-linux-androideabi --prefix=$BUILD_freetype --enable-shared --without-zlib --with-png=no --without-harfbuzz think i may have to build harfbuzz but i will do some more

Re: [ft] Opentype support of specual characters

2015-03-22 Thread Werner LEMBERG
is it possible to use the special characters like ö, ü, ö, ß from opentype (otf) fonts in PHP? If the font contains those glyphs, and it also contains a Unicode cmap (which is standard today), it should work. I used this: ImageTTFText ($image, 30, 0, 0, 40,

Re: [ft] Opentype support of specual characters

2015-03-22 Thread Lawrence D'Oliveiro
On Sun, 22 Mar 2015 16:35:33 +0100, g.po...@polte-media.com wrote: is it possible to use the special characters like ö, ü, ö, ß from opentype (otf) fonts in PHP? Doesn’t sound like a FreeType issue. Maybe you should ask on a PHP forum. ___ Freetype