Problems proportioning an image
Posted: 2008-05-29T09:29:04-07:00
I have created 2 blank graphics using:
convert -size 500x250 xc:white blanks.bmp
convert -size 1975x938 xc:white blankl.bmp
I did:
convert blanks.bmp -fill black -pointsize 16 -font ARIAL.TTF -size 310 -gravity center -background #00000000 caption:"This is a test for proportioning" -gravity northwest -geometry +180+30 -composite small.bmp
Then I did:
convert blankl.bmp -fill black -pointsize 60 -font ARIAL.TTF -size 1240 -gravity center -background #00000000 caption:"This is a test for proportioning" -gravity northwest -geometry +675+112 -composite large.bmp
The font almost looks bold.
I then did:
convert -resize 500x250 large.bmp resize.bmp
The resize.bmp font is completely different as it almost looks bold.
The large.bmp is the size I need to print at 300 dpi, but the fonts do not proportion right. to create the large, I multplied all the arguments by 3.75 (500x3.75) = 1975. pointsize 16x3.75 is 60.
I also the tried:
convert -resize 1975x938 small.bmp largeresize.bmp
and that was not right either.
Please help.
Thanks, Troy
convert -size 500x250 xc:white blanks.bmp
convert -size 1975x938 xc:white blankl.bmp
I did:
convert blanks.bmp -fill black -pointsize 16 -font ARIAL.TTF -size 310 -gravity center -background #00000000 caption:"This is a test for proportioning" -gravity northwest -geometry +180+30 -composite small.bmp
Then I did:
convert blankl.bmp -fill black -pointsize 60 -font ARIAL.TTF -size 1240 -gravity center -background #00000000 caption:"This is a test for proportioning" -gravity northwest -geometry +675+112 -composite large.bmp
The font almost looks bold.
I then did:
convert -resize 500x250 large.bmp resize.bmp
The resize.bmp font is completely different as it almost looks bold.
The large.bmp is the size I need to print at 300 dpi, but the fonts do not proportion right. to create the large, I multplied all the arguments by 3.75 (500x3.75) = 1975. pointsize 16x3.75 is 60.
I also the tried:
convert -resize 1975x938 small.bmp largeresize.bmp
and that was not right either.
Please help.
Thanks, Troy