Search found 14 matches

by kiwijunglist
2013-07-09T08:51:24-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 8748

Re: Annotation Woes

convert.exe ^
"fanart.jpg" -resize 1778x1778 ^
-gravity center -crop 1000x1000+0+0 +repage ^
"fanart.mask.png" -alpha off -compose copy_opacity -composite ^
"fanart.movie.png" -compose over -composite ^
-background transparent -fill white ^
-font segoe-ui-bold -gravity center -size 780x88 ...
by kiwijunglist
2013-07-09T08:16:40-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 8748

Re: Annotation Woes

Thank you, that is working I had originally tried brackets but hadn't put spaces on each side of the bracket, and I didn't persist because I didn't know that was possible.
by kiwijunglist
2013-07-09T08:09:30-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 8748

Re: Annotation Woes

thank you i will try that.
by kiwijunglist
2013-07-09T07:41:15-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 8748

Re: Annotation Woes

I have another question:

I am adding video + audio codecs and studio logos to the disc images I am auto creating. I want the images on the edge of the disc i am creating.
However the logos that I am adding have unknown widths and the X+Y positioning for composition only uses the top left corner of ...
by kiwijunglist
2013-07-05T18:50:47-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 8748

Re: Annotation Woes

BRILLIANT!!! Thank you.
by kiwijunglist
2013-07-05T17:48:11-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 8748

Re: Annotation Woes

Hi

Thanks for your tips :)

I havn't been able to combine line 2+3 because when i do the resulting image is 1000x98 pixels.

I have been unable to alter line #2 to create a 1000x1000 transparent background where the text is centered on the X axis, but the Y axis is set with a number.
convert.exe ...
by kiwijunglist
2013-07-05T17:21:44-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 8748

Re: Annotation Woes

Hi Koopa, I just edited my post above. Can I just append the lines. I'm not actually a programmer so I do struggle with the ordering.
by kiwijunglist
2013-07-05T16:47:23-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 8748

Re: Annotation Woes

Thanks.

Can I do this within the same command line?

(or) will I have to make 3 separate commands?
ie. Make disc image, save to temp image to HDD, Make text image save temp image #2 to HDD, then combine the images?

At the moment I have:

convert.exe %1 -resize 1778x1778 ^ -gravity center -crop ...
by kiwijunglist
2013-07-05T06:45:00-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 8748

Annotation Woes

Annotation woes

This is my script:

"%~dp0convert.exe" %1 -resize 1778x1778 ^ -gravity center -crop 1000x1000+0+0 +repage ^ "%~dp0fanart.mask.png" -alpha off -compose copy_opacity -composite "%~dp0fanart.overlay.png" -compose over -composite ^ -font candice -pointsize 48 ^ -gravity center ...
by kiwijunglist
2012-10-15T22:56:51-07:00
Forum: Users
Topic: Resize -> Crop -> Image Mask -> Merge Layers
Replies: 10
Views: 13735

Re: Resize -> Crop -> Image Mask -> Merge Layers

Unfortunately I wasn't able to figure out the code to do what I wanted...

however I figured out a cheat

Since all the movie posters have an aspect ratio of 0.667 If I resize to 1500x1500 then the width will be exactly 1000 pixels

convert poster.jpg -resize 1500x1500 ^ -gravity center -crop ...
by kiwijunglist
2012-10-15T22:25:23-07:00
Forum: Users
Topic: Resize -> Crop -> Image Mask -> Merge Layers
Replies: 10
Views: 13735

Re: Resize -> Crop -> Image Mask -> Merge Layers

There is a small problem with the resize / crop in the first part of the command

convert poster.jpg -gravity center -crop 1000x1000+0+0 +repage result.jpg

What seems to be happening is it is croping a 1000x1000 centre part of the image, but what I really want is

Resize the width to 1000 pixels ...
by kiwijunglist
2012-10-15T22:02:21-07:00
Forum: Users
Topic: Resize -> Crop -> Image Mask -> Merge Layers
Replies: 10
Views: 13735

Re: Resize -> Crop -> Image Mask -> Merge Layers

thanks, i switched the order of the commands (as above edited post) and i got the result i wanted :D

(There was some shadowing outside the dvdoverlay image that was cut off by the mask, if you applied the mask first)
by kiwijunglist
2012-10-15T21:55:32-07:00
Forum: Users
Topic: Resize -> Crop -> Image Mask -> Merge Layers
Replies: 10
Views: 13735

Re: Resize -> Crop -> Image Mask -> Merge Layers

THANKS!

That is 95% there

I actually want to apply the mask before the overlay, I might be able to figure this out myself (hopefully) :D

EDIT:

convert poster.jpg -gravity center -crop 1000x1000+0+0 +repage ^ transparency_mask.png -alpha off -compose copy_opacity -composite dvdoverlay.png ...
by kiwijunglist
2012-10-15T21:11:04-07:00
Forum: Users
Topic: Resize -> Crop -> Image Mask -> Merge Layers
Replies: 10
Views: 13735

Resize -> Crop -> Image Mask -> Merge Layers

Hi

I'm trying to use imagemagick for auto creating missing disc images from a movie poster for mediaportal (open source home theatre pc software). I'm hoping some one can help me with the commands I need to use.

Start with poster.jpg which is a rectangular image and can be any size.

Step 1a ...