Search found 17 matches
- 2019-05-22T16:30:32-07:00
- Forum: Users
- Topic: Simple Animation
- Replies: 5
- Views: 4318
Re: Simple Animation
Removed the f_4_0.png now it works.
- 2019-05-22T16:12:00-07:00
- Forum: Users
- Topic: Simple Animation
- Replies: 5
- Views: 4318
Re: Simple Animation
There is still this blank frame? https://picr.ws/i/64Y
- 2019-05-22T15:53:57-07:00
- Forum: Users
- Topic: Simple Animation
- Replies: 5
- Views: 4318
Simple Animation
In my animation there is a "empty" frame after the animation restarts. Is it possible to remove this? Animation https://i.imgur.com/uOhpEGl.gif Code magick -size 256x256 canvas:transparent -dispose background \ img/rare_dragonlamp_64_f_4_0.png -page +100+126 \ img/rare_dragonlamp_64_f_4_1.png -page ...
- 2019-05-14T05:34:35-07:00
- Forum: Users
- Topic: Blendmode "screen" on transparent canvas
- Replies: 3
- Views: 3777
Re: Blendmode "screen" on transparent canvas
can you give me an example
- 2019-05-14T00:30:13-07:00
- Forum: Users
- Topic: Blendmode "screen" on transparent canvas
- Replies: 3
- Views: 3777
Blendmode "screen" on transparent canvas
I need to compose three images together. The problem is image b_4_0.png is opaque and has transparency (semi-transparent). The black pixels should not be there. magick -size 300x300 canvas:transparent \ img/a_4_0.png -geometry +114+55 -compose over -composite \ img/b_4_0.png -geometry +109+75 ...
- 2019-04-24T13:34:40-07:00
- Forum: Users
- Topic: -compose plus on transparent canvas
- Replies: 9
- Views: 6292
Re: -compose plus on transparent canvas
I saw it but is there not another way which make the light display correct.
If i add -transparent black i get a better result but not perfect.
If i add -transparent black i get a better result but not perfect.
- 2019-04-24T13:06:16-07:00
- Forum: Users
- Topic: -compose plus on transparent canvas
- Replies: 9
- Views: 6292
Re: -compose plus on transparent canvas
I first create the dragon image from some PNGs. Then i create the animation of the flame. And after that i compose both together. But g_4_1.png has this black pixels which need to be transparent. #!/bin/sh # Compose the dragon magick -size 300x300 canvas:transparent \ img/a_4_0.png -geometry +122 ...
- 2019-04-24T12:58:00-07:00
- Forum: Users
- Topic: -compose plus on transparent canvas
- Replies: 9
- Views: 6292
Re: -compose plus on transparent canvas
I need it like the image with skyblue background but transparent so that it only shows the light
- 2019-04-24T12:51:17-07:00
- Forum: Users
- Topic: -compose plus on transparent canvas
- Replies: 9
- Views: 6292
Re: -compose plus on transparent canvas
Whats the best way to convert the opaque to transparent and then compose it? Should i create a canvas using opaque and set opacity to 0 ?
I tried:
I tried:
Code: Select all
magick -size 100x100 canvas:transparent \
\( img/g_4_1.png -transparent white \) -compose plus -composite \
img/result_0.png
- 2019-04-24T12:39:29-07:00
- Forum: Users
- Topic: -compose plus on transparent canvas
- Replies: 9
- Views: 6292
-compose plus on transparent canvas
I want to compose a g_4_1.png over a blank transparent canvas using composition "plus". The problem is if i use a transparent canvas the image just gets copied over the canvas and fills the background black. But if i use a background color for example "skyblue" for the canvas it displays the image ...
- 2019-04-23T08:57:32-07:00
- Forum: Users
- Topic: compose and colorize images on blank canvas
- Replies: 15
- Views: 9632
Re: compose and colorize images on blank canvas
I tried using -channel rgb then the glow just gets transparent. The other images are displayed correct. It has something to do with the alpha.
And what do you mean by "magick"?
And what do you mean by "magick"?
- 2019-04-23T08:18:32-07:00
- Forum: Users
- Topic: compose and colorize images on blank canvas
- Replies: 15
- Views: 9632
- 2019-04-23T05:06:43-07:00
- Forum: Users
- Topic: compose and colorize images on blank canvas
- Replies: 15
- Views: 9632
Re: compose and colorize images on blank canvas
Ive noticed something strange. When i use a background color for the canvas the glow of the flame is displayed correct, without the black pixels around it. https://i.imgur.com/uwtnESv.png But if i use a transparent background for the canvas the black pixels around the glow still are there. https://i ...
- 2019-04-23T00:01:52-07:00
- Forum: Users
- Topic: compose and colorize images on blank canvas
- Replies: 15
- Views: 9632
Re: compose and colorize images on blank canvas
I want the opposite, like keeping the yellow glow but removing the black around it.
See the small glow around the flame
See the small glow around the flame
- 2019-04-22T23:59:21-07:00
- Forum: Users
- Topic: compose and colorize images on blank canvas
- Replies: 15
- Views: 9632
Re: compose and colorize images on blank canvas
Yes, the colorizing part is done. The only problem now is the black around the flame as you can see.
The image which causes this problem is img/g_4_1.png
I think it has something to do with the alpha channel or opacity.
The image which causes this problem is img/g_4_1.png
I think it has something to do with the alpha channel or opacity.