Search found 8 matches

by bkstorm
2018-07-26T02:31:19-07:00
Forum: Developers
Topic: How to draw vertical text?
Replies: 1
Views: 7362

How to draw vertical text?

Hi. I want to draw vertical text like the image below. How can I do that? Thanks! https://i.imgur.com/LI1gB0I.png Version: ImageMagick 7.0.7-33 Q16 x86_64 2018-05-17 https://www.imagemagick.org Copyright: © 1999-2018 ImageMagick Studio LLC License: https://www.imagemagick.org/script/license.php Feat...
by bkstorm
2018-03-18T22:53:50-07:00
Forum: Users
Topic: Can't merge a gif image with a png image.
Replies: 1
Views: 2700

Can't merge a gif image with a png image.

I have two image: a GIF image and a PNG image. the PNG image: https://i.imgur.com/T5b7xCi.png the GIF image: https://i.imgur.com/RzHb7oT.gif I use the command below to merge two images: convert banana-bg.png null: \ \( banana.gif -coalesce \) -compose DstOver -layers Composite null: \ -set loop 0 -l...
by bkstorm
2018-03-18T21:15:33-07:00
Forum: Users
Topic: I have a problem with rotating and cropping gif images
Replies: 2
Views: 3231

Re: I have a problem with rotating and cropping gif images

Thank you, it works. I will upgrade ImageMagick.
by bkstorm
2018-03-12T02:31:33-07:00
Forum: Users
Topic: I have a problem with rotating and cropping gif images
Replies: 2
Views: 3231

I have a problem with rotating and cropping gif images

I have an image: https://i.imgur.com/yYUce9e.gif I want to rotate the image through 60 degrees then crop it. Here is my command: convert bird.gif -coalesce -rotate 60 -crop 575x575+0+0! bird-crop.gif With IM 6.7.2-7, it works just like what I want. Version: ImageMagick 6.7.2-7 2017-03-22 Q16 http://...
by bkstorm
2018-03-05T02:46:30-07:00
Forum: Users
Topic: How to crop gif images into circle
Replies: 2
Views: 4899

Re: How to crop gif images into circle

Thank snibgo, it works :D
by bkstorm
2018-03-05T00:29:30-07:00
Forum: Users
Topic: How to crop gif images into circle
Replies: 2
Views: 4899

How to crop gif images into circle

I have a gif image like this: https://media.giphy.com/media/Cmr1OMJ2FN0B2/giphy.gif I want to crop it into a circle. Here is the command which I use to crop images, it works fine with static images (png, jpeg, ...), but it doesn't work with animations (gif images). convert bird.png -alpha on \( +clo...
by bkstorm
2017-04-30T21:10:03-07:00
Forum: Developers
Topic: [Solved] Using -distort to create curved text with transparent background
Replies: 3
Views: 15150

Re: Using -distort to create curved text with transparent background

I tried "-background None" before, but my image viewer software display white color instead of transparent, so I thought my command is wrong.
When I used another software, it works. Thank for your help, snibgo.
by bkstorm
2017-04-27T23:58:59-07:00
Forum: Developers
Topic: [Solved] Using -distort to create curved text with transparent background
Replies: 3
Views: 15150

[Solved] Using -distort to create curved text with transparent background

I have a command like this: convert -font Tahoma -pointsize 20 label:' Around the World ' \ -virtual-pixel Background -background SkyBlue \ -distort Arc 60 arc_circle_1.png The command will create an image: https://i.stack.imgur.com/tD1S6.jpg The background color of the text is white, I want it to b...