Search found 30 matches

by magmical
2013-05-13T05:52:28-07:00
Forum: Users
Topic: [SOLVED] Is there a good MSL docu available?
Replies: 8
Views: 10366

Re: [SOLVED] Is there a good MSL docu available?

Thanks for your answer! If I understand it right then the script file will have the same - sometimes hard to read - commands like the command line. I think the BIG advantage of MSL is it's easyness to understand (like HTML). For single param commands it's almost easy to read: e.g. -crop 100x100+10+1...
by magmical
2013-05-11T11:31:08-07:00
Forum: Users
Topic: [SOLVED] Is there a good MSL docu available?
Replies: 8
Views: 10366

Re: [SOLVED] Is there a good MSL docu available?

I will do so! :)

Thanks or your infos!
by magmical
2013-05-11T07:06:42-07:00
Forum: Users
Topic: [SOLVED] Is there a good MSL docu available?
Replies: 8
Views: 10366

Re: Is there a good MSL docu available?

Thanks for this info.
I like MSL pretty much! For me it's better to understand than convert commands.

So I read between the lines that there is only a subset of commands available with MSL?

Another thought:
How do I know if I a command is missing so that I can request for that element?
by magmical
2013-05-11T06:35:56-07:00
Forum: Users
Topic: [SOLVED] Is there a good MSL docu available?
Replies: 8
Views: 10366

[SOLVED] Is there a good MSL docu available?

FINAL EDIT: Here is a complete list of all supported MSL commands (for conjure version 6.8.5-0 2013-04-23 Q8 on a windows system) http://www.imagemagick.org/script/conjure.php#msl ______________________________________________________________________________________________________ Hi folx! I am sea...
by magmical
2013-05-11T04:00:34-07:00
Forum: Users
Topic: [SOLVED] Is "+repage" and "-repage 0x0" exactly the same?
Replies: 10
Views: 20062

[CONCLUSION] Is "+repage" and "-repage 0x0" exactly the same

Code: Select all

convert: +repage
convert: -repage 0x0
MSL: <repage geometry="0x0" />
Is NOT the same!
Difference: repage 0x0 keeps the current offsets!

But:

Code: Select all

convert: +repage
convert: -repage 0x0+0+0
MSL: <repage geometry="0x0+0+0" />
IS the same!
by magmical
2013-05-11T03:56:55-07:00
Forum: Users
Topic: [SOLVED] Is "+repage" and "-repage 0x0" exactly the same?
Replies: 10
Views: 20062

Re: [SOLVED] Is "+repage" and "-repage 0x0" exactly the same

fmw42 wrote:They are the same. see http://www.imagemagick.org/Usage/basics/#page
I found it on the page:

Code: Select all

-repage 0x0+0+0
    Equivalent to a "+repage" 
Now thats a proof. It should be definitely the same.

Thanks for this hint!
by magmical
2013-05-10T13:35:24-07:00
Forum: Users
Topic: [SOLVED] Is "+repage" and "-repage 0x0" exactly the same?
Replies: 10
Views: 20062

Re: Is "+repage" and "-repage 0x0" exactly the same?

Thank you very much for your help!

There is so much to learn about ImageMagick! :D
by magmical
2013-05-10T13:05:21-07:00
Forum: Users
Topic: [SOLVED] Is "+repage" and "-repage 0x0" exactly the same?
Replies: 10
Views: 20062

Re: Is "+repage" and "-repage 0x0" exactly the same?

+repage = removes the meta-data -repage 0x0 = recalculates the canvas size, and keeps the current offsets Thanks for this additonal info! Now it becomes clearer. One final question: If I do a crop with convert like "-crop "100x100+0+0" what's the correct repage after this? When I gue...
by magmical
2013-05-10T12:50:13-07:00
Forum: Users
Topic: [SOLVED] Is "+repage" and "-repage 0x0" exactly the same?
Replies: 10
Views: 20062

Re: Is "+repage" and "-repage 0x0" exactly the same?

Thanks again! They are not the same. Oh well, now I am a bit surprised. :) I am quite sure that these are equal, isn't it: convert: -repage 0x0 MSL: <repage geometry="0x0" /> If so lets concentrate on these: +repage -repage 0x0 Can you be more detailed whats the difference beween them? ---...
by magmical
2013-05-10T12:24:18-07:00
Forum: Users
Topic: [SOLVED] Is "+repage" and "-repage 0x0" exactly the same?
Replies: 10
Views: 20062

[SOLVED] Is "+repage" and "-repage 0x0" exactly the same?

Hello!

I've searched for a while and did find some hints but no explicit statement:

Are the following 3 commands absolutely equal?

Code: Select all

convert: +repage
convert: -repage 0x0
MSL: <repage geometry="0x0" />
Thanks.
by magmical
2013-05-10T09:54:18-07:00
Forum: Users
Topic: [SOLVED] Write multiple images with convert?
Replies: 2
Views: 3440

Re: Write multiple images with convert?

Thats exactly what I search for!

Thanks a lot GreenKoopa for your fast help! :)
by magmical
2013-05-10T09:23:43-07:00
Forum: Users
Topic: [SOLVED] Write multiple images with convert?
Replies: 2
Views: 3440

[SOLVED] Write multiple images with convert?

Hello there! How can I write multiple images with one command line (convert)? In MSL it works like this: <image> <read filename="source.bmp" /> <draw ...something... /> <write filename="img1.bmp" /> <draw ...something else... /> <write filename="img2.bmp" /> </image> Wi...
by magmical
2013-05-08T11:03:07-07:00
Forum: Magick Scripting Language
Topic: [SOLVED] Copy-paste an image region
Replies: 1
Views: 62579

[SOLVED] Copy-paste an image region

Hi folks

I want to copy-paste an image region.
With convert it must look like this:
convert old.png ( +clone -crop 20x20+10+10 +repage ) -geometry +110+110 -composite new.png

How can I do this with Magick Scripting Language?
by magmical
2013-05-03T07:16:50-07:00
Forum: Magick Scripting Language
Topic: problems with page size after clipping
Replies: 2
Views: 81216

Re: problems with page size after clipping

magick wrote:Yes there are plans to make conjure completely compatible with convert.
Here is a complete list of all supported MSL commands (for conjure version 6.8.5-0 2013-04-23 Q8 on a windows system)
http://www.imagemagick.org/script/conjure.php#msl
by magmical
2013-05-03T05:36:24-07:00
Forum: Magick Scripting Language
Topic: [SOLVED] Docu for MSL commands
Replies: 0
Views: 58581

[SOLVED] Docu for MSL commands

Here is a complete list of all supported MSL commands (for conjure version 6.8.5-0 2013-04-23 Q8 on a windows system) http://www.imagemagick.org/script/conjure.php#msl ______________________________________________________________________________________________________ FORMER POST DELETED (NOW OBS...