Search found 2 matches
- 2012-10-21T12:04:37-07:00
- Forum: Bugs
- Topic: ImageMagick + Drawing + Gtk3 + Linux
- Replies: 1
- Views: 3285
Re: ImageMagick + Drawing + Gtk3 + Linux
Solved! The problem is that when I was called gtk_init, then ImageMagick misbehaves with non integer coordinates​, that is, the fractional part is not rounded to zero. In my case, it's a macro LIMIT, which is equal to 1.5. If I set its to, for example, to 2.0 or 1.0 or make "floor" or "ceil" for c ...
- 2012-10-20T23:59:24-07:00
- Forum: Bugs
- Topic: ImageMagick + Drawing + Gtk3 + Linux
- Replies: 1
- Views: 3285
ImageMagick + Drawing + Gtk3 + Linux
Hello! I have the problem with a combination of ImageMagick + Draw + GTK3 + Linux. We have an original image ( image 1 ). Code that spread below, works as expected when it excludes functions gtk_init and show_image . This creates rounded corners ( image 2 ) with radiuces from the array corners ...