llgcode
llgcode
Today font could be anywhere. Le 13 juil. 2015 16:20, "Andrew Brampton" [email protected] a écrit : > I just had a problem related to this, that draw2d couldn't find the...
Yes, It's a great idea. Thanks -- Laurent. On 9 August 2015 at 17:41, Steven Edwards [email protected] wrote: > Would you accept a pull request that specifies a new type...
Hi @tindli, we uses https://github.com/jung-kurt/gofpdf to generate pdf. daw2d can draw in a pdf but cannot handle pages. You need to use gofpdf for this.
There's no support today in draw2d to do text wrapping. But you can implement your own text wrapping by using the length of a string. -- Laurent. On 27 March...
it's cause gc.Current.Font is loaded against gc.Current.FontData
You're right the implementation can be optimized to check gc.Current.Font is the same as gc.Current.FontData.
Hi SteepAtticStairs, I guess you need to reinitialize the path every time you have drawn something, so that the path don't grow on each loop. Try to do a `SVGgc.BeginPath()`...
Thanks, I've open the svg file. I see a lot of redundant information that could be factorize. For now, the svg generator do not factorize by itself. I guess one...
Thanks. Do you want me to implement the optimisation? Or you want to do it ?
I found the redundant LineTo https://github.com/llgcode/draw2d/blob/80aa0a2a901dfba09c7e220f01200d50293c2119/path.go#L129