Search found 10 matches

by rocastro
2015-07-12T15:05:12-07:00
Forum: Bugs
Topic: radial-gradient issue in mvg files
Replies: 12
Views: 8418

Re: radial-gradient issue in mvg files

Okay, thanks for your time and review the problem. Imagemagick is a great program for image treatment through commands.
by rocastro
2015-07-08T07:42:34-07:00
Forum: Bugs
Topic: radial-gradient issue in mvg files
Replies: 12
Views: 8418

Re: radial-gradient issue in mvg files

Ok, thanks.
by rocastro
2015-07-08T02:01:42-07:00
Forum: Bugs
Topic: radial-gradient issue in mvg files
Replies: 12
Views: 8418

Re: radial-gradient issue in mvg files

The svg version of radial gradient works Ok. <?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0 ...
by rocastro
2015-07-07T14:59:13-07:00
Forum: Bugs
Topic: radial-gradient issue in mvg files
Replies: 12
Views: 8418

Re: radial-gradient issue in mvg files

Searching older posts I found this: http://www.imagemagick.org/discourse-server/viewtopic.php?t=17031 http://www.imagemagick.org/Usage/draw/#svg I tried the mvg file of the example on this link and it works Ok whith linear gradient: push graphic-context viewbox 0 0 1000 1000 affine 1 0 0 1 0.0 0.0 ...
by rocastro
2015-07-07T14:12:26-07:00
Forum: Bugs
Topic: radial-gradient issue in mvg files
Replies: 12
Views: 8418

Re: radial-gradient issue in mvg files

Sorry for the multi-post. Thank's I have this information but I can't paint a gradient from a mvg file. I'm tring the linear gradient from the link whith MVG Gradients: http://www.linux-nantes.org/~fmonnier/OCaml/MVG/ But it doesn't work. At the first line say: '."\n"; ?> And convert.exe say error ...
by rocastro
2015-07-07T12:35:28-07:00
Forum: Bugs
Topic: radial-gradient issue in mvg files
Replies: 12
Views: 8418

Re: radial-gradient issue in mvg files

Please , can you help me with this problem , I'm new to the mvg language and this is not very well documented
by rocastro
2015-07-07T11:45:09-07:00
Forum: Bugs
Topic: radial-gradient issue in mvg files
Replies: 12
Views: 8418

Re: radial-gradient issue in mvg files

If the mvg file is:

fill "hsl(0,255,60)" circle 500,500,500,750

Then no problem.

It's no posible to use fill radial-gradient in mvg files?
by rocastro
2015-07-07T11:26:03-07:00
Forum: Bugs
Topic: radial-gradient issue in mvg files
Replies: 12
Views: 8418

radial-gradient issue in mvg files

I tried to draw a circle whith radial gradient. From the comand line no problem. convert -size 1000x1000 xc:white -fill radial-gradient:"hsl(0,255,60)"-"hsl(0,255,120)" -draw "circle 500,500,500,750" draw_circle.png When I put the command in a mvg file, then imagemagick crash whith unrecognized ...
by rocastro
2015-07-07T09:05:59-07:00
Forum: Bugs
Topic: Problem drawing Circles
Replies: 2
Views: 2258

Re: Problem drawing Circles

I understand. Whell that's ok, then no problem.

Thank's
by rocastro
2015-07-07T08:27:12-07:00
Forum: Bugs
Topic: Problem drawing Circles
Replies: 2
Views: 2258

Problem drawing Circles

I tried to draw a circle whith the docummentation. Draw a circle center at 500,500 whith 250 pixel radio. According to the documentation this would be the Right Way: convert -size 1000x1000 xc:white -fill blue -draw "circle 500,500,750,750" draw_circle.png If you look at the image you will see that ...