Search found 12 matches

by kholidfu
2017-02-09T03:15:03-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

Additional questions...

How to create 2 text with different font setting, in my command example, "Indonesia" below "America" .
Both need shadowed too.

Here is what I'm tryin' and failed...


convert yMaXdfL.jpg \
\( -size 500x -background none -font Courier10PitchB -pointsize 30 -fill white ...
by kholidfu
2017-02-08T15:58:10-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

If I have longer text like below, it becomes unreadable...


convert yMaXdfL.jpg \
\( -size 500x200! -background black -gravity center -font arial \
-fill white \
label:"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy ...
by kholidfu
2017-02-08T06:35:10-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

I don't want the -gravity center param, I need to place the text manually inside 500x200! box

Code: Select all

-geometry +50+180 -composite -fill none -strokewidth 2. \
by kholidfu
2017-02-07T23:46:02-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

Here is my sunrise-sea.jpg
http://ititli.com/images/yMaXdfL.jpg

Here are what I want to do:

Using sunrise-sea.jpg, I want:
1. create a rectangular box with size 500x200 (box1)
2. put a text inside that box1, the point is font will be larger/smaller automatically according to nums of characters ...
by kholidfu
2017-02-07T18:12:32-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

this command works perfectly...


convert logo: \
\( -background none -gravity center -font arial -pointsize 48 \
-fill white label:"TESTING" -trim +repage \) \
\( -clone 1 -background black -shadow 80x3+5+5 \) \
\( -clone 1 -clone 2 +swap -background none -layers merge +repage \) \
-delete 1,2 ...
by kholidfu
2017-02-07T18:07:26-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

Hi, I already update my IM version...

convert --version


Version: ImageMagick 6.8.9-9 Q16 x86_64 2015-07-21 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
Delegates: bzlib djvu fftw fontconfig freetype jbig jng jpeg lcms lqr ...
by kholidfu
2017-02-02T19:51:04-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

font fixed.. here is some content from ~/.magick/type.xml


<type
format="type1"
name="TeXxipxb10"
fullname="TeX xipxb10 Regular"
" family="TeX xipxb10
glyphs="/usr/share/texmf/fonts/type1/fkr/tipa/xipxb10.pfb"
metrics="/usr/share/texmf/fonts/type1/fkr/tipa/xipxb10.afm"
/>

</typemap>


I'm ...
by kholidfu
2017-02-02T19:47:39-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

What is your IM version and OS/platform?


Version: ImageMagick 6.7.7-10 2016-11-29 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2012 ImageMagick Studio LLC
Features: OpenMP



Linux bantengpc 3.13.0-37-generic #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 x86_64 x86_64 x86_64 GNU ...
by kholidfu
2017-02-02T15:15:40-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

Okay, I can fix the font problem later...
what about the second error message?

Code: Select all

convert.im6: no such image `-clone' @ error/convert.c/ConvertImageCommand/947.
by kholidfu
2017-02-01T21:40:21-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

I'm running your code:


convert logo: \
\( -background none -gravity center -font arial -pointsize 48 \
-fill white label:"TESTING" -trim +repage \) \
\( -clone 1 -background black -shadow 80x3+5+5 \) \
\( -clone 1 -clone 2 +swap -background none -layers merge +repage \) \
-delete 1,2 \
-gravity ...
by kholidfu
2017-02-01T19:02:13-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

Re: create text shadow

can you show me some command example?

convert sunrise-sea.jpg -size 500x200! -font Ubuntu-Bold-Italic -background none \( label:"The only thing that interferes with my learning is my education.\nALBERT EINSTEIN" -shadow \) -geometry +50+180 -composite -fill none -strokewidth 2. -stroke black -draw ...
by kholidfu
2017-02-01T15:14:38-07:00
Forum: Users
Topic: create text shadow
Replies: 22
Views: 15312

create text shadow

I want to embed text into an image, the text should be shadowed. Here is what I'm trying so far:

convert sunrise-sea.jpg -size 500x200! -font Ubuntu-Bold-Italic -background none label:"The only thing that interferes with my learning is my education.\nALBERT EINSTEIN" -geometry +50+180 -composite ...