Re: [E-devel] Using bold fonts in Edje

2010-12-22 Thread Tom Hacohen
On Wed, 2010-12-22 at 22:06 +0900, Daniel Juyung Seo wrote: > But we faced a width size problem here. > Because we tilted the font a little bit(then looks like Italic), > the width of each font got bigger. > So we need to update the font width information or the characters are clipped. > Where to p

Re: [E-devel] Using bold fonts in Edje

2010-12-22 Thread Daniel Juyung Seo
Hello, We faced an issue while we were working on font manipulation code in evas. We added a feature to transforms fonts to italic style on the fly through eng_font_draw(). Even we used a font which did not have italic style, output looks Italic style on the screen by tilting the fonts. But we f

Re: [E-devel] Using bold fonts in Edje

2010-12-20 Thread Tom Hacohen
On Mon, 2010-12-20 at 11:11 +0100, Olivier Duclos wrote: > Thanks a lot for your answers. I made a bold version of my font in > Fontforge. It was surprisingly easy :) Yep, Fontforge is nice, that's where I usually send people, but since I'm no typographer, I can't give my stamp of quality. > > The

Re: [E-devel] Using bold fonts in Edje

2010-12-20 Thread Olivier Duclos
Thanks a lot for your answers. I made a bold version of my font in Fontforge. It was surprisingly easy :) The fact that Evas connot generate bold or italic on the fly should be documented somewhere (at least in the edc reference?). I wouldn't mind doing it but i don't know how. --OD On Mon, 201

Re: [E-devel] Using bold fonts in Edje

2010-12-19 Thread Tom Hacohen
On Mon, 2010-12-20 at 11:03 +0900, Daniel Juyung Seo wrote: > Hello, > Olivier Duclos, this is what we talked about earier. > and it looks like evas doesn't support this feature :( > > I faced the same problem and I'm using separate bold fonts. > At this moment it is required to use bold fonts. >

Re: [E-devel] Using bold fonts in Edje

2010-12-19 Thread Daniel Juyung Seo
Hello, Olivier Duclos, this is what we talked about earier. and it looks like evas doesn't support this feature :( I faced the same problem and I'm using separate bold fonts. At this moment it is required to use bold fonts. We may add bold feature to evas someday :) Thanks. Daniel Juyung Seo (Seo

Re: [E-devel] Using bold fonts in Edje

2010-12-19 Thread Tom Hacohen
On Fri, 2010-12-17 at 09:35 +0100, Olivier Duclos wrote: ... > style { > name: "cool_button"; > base: "font=TomsonTalks:style=Bold font_size=40"; > } > > The font TomsonTalks.ttf is embedded in the .edj file. > > The problem is, when I run my application, t

[E-devel] Using bold fonts in Edje

2010-12-17 Thread Olivier Duclos
Hi there, In an edc file, I defined a font style as follow : style { name: "cool_button"; base: "font=TomsonTalks:style=Bold font_size=40"; } The font TomsonTalks.ttf is embedded in the .edj file. The problem is, when I run my application, the te