Search found 68 matches

by Albireo
2010-02-03T03:39:41-07:00
Forum: Users
Topic: Convert - keep the resolution
Replies: 9
Views: 23343

Re: Convert - keep the resolution

The GIF format does not include the resolution (density) of the image..... Hmmm. the GIF-images have an resolution or....? I noticed a "strange" thing. Created a png file instead of gif - the picture looked good (same size), but IrfanView said that the image had a resolution of 2x2dpi ......
by Albireo
2010-02-02T19:23:15-07:00
Forum: Users
Topic: Add many object to one image
Replies: 1
Views: 4590

Add many object to one image

HI As created an A4 paper, After that I put an logo on the top right corner. This works. (in the future, I would habe probably the paper translucent - if I even have a virtual paper - which "holds together" all texts.) Then I would add a variety of texts (and placements) (Here in the last ...
by Albireo
2010-02-02T18:10:40-07:00
Forum: Users
Topic: Convert - keep the resolution
Replies: 9
Views: 23343

Convert - keep the resolution

Hi! I have an "jpg" image with size: 600x600pixels, Resolution: 150 dpi the image get rounded corners with the command. It's OK! The final image is a ". gif" file (.jpg doesn't work) The size is 120x120 - OK! But I can't see the result resolution in IrfanView but the size is the ...
by Albireo
2010-02-01T15:14:58-07:00
Forum: Users
Topic: -size -density -units
Replies: 2
Views: 28544

Re: -size -density -units (solved)

Thank you I got an idea how the problem should be solved :) (I don't realy know, what the site you gave me has to say :? ) I made it in my way The size on A4 is 210mm x 297mm and if I want to have an density about 300dpi x 300dpi It corresponds to a resolution of about, 120dots/cm 120dots/cm x 21,0c...
by Albireo
2010-02-01T04:34:35-07:00
Forum: Users
Topic: -size -density -units
Replies: 2
Views: 28544

-size -density -units

Hi! I want to control the size of the image results. (as an example - if I want to make an image of A4 size - How do you do?) Began with a simple example that I found here: http://www.imagemagick.org/Usage/basics/ convert -size 300x300 xc:red -append c:\temp\pic\red_300x300.jpg (translated to Window...
by Albireo
2010-01-24T20:24:21-07:00
Forum: Users
Topic: Reduce the number of commands
Replies: 17
Views: 37087

Re: Reduce the number of commands

........Perhaps this is what you want (unix code) infile="hatching_orig.jpg" drawcmd=`convert $infile -define jpeg:size=300x300 -thumbnail "300x300>" \ -format "roundrectangle 1,1 %[fx:w],%[fx:h] 25,25" info:` convert \( $infile -define jpeg:size=300x300 -thumbnail &qu...
by Albireo
2010-01-24T17:14:36-07:00
Forum: Users
Topic: Area with the text - side by side
Replies: 1
Views: 4306

Area with the text - side by side

Hello! (I hope i can explain my wishes, with my bad english :D ) I need an overview of a directory tree. (about 100 directories) The problem is that directory names can be changed day by day it's easy to get the names of all directories. but to control the print layout (font, size, color and so on) ...
by Albireo
2010-01-24T16:22:27-07:00
Forum: Users
Topic: How to suppress the DOS window when executing a command?
Replies: 11
Views: 20962

Re: How to suppress the DOS window when executing a command?

ooe8eoo wrote:Hi,

I am executing the convert command from another Windows application.

The black DOS window will appear whenever the command is executing. Is there a way to suppress the window?
What Windows application?

//Jan
by Albireo
2010-01-24T16:10:11-07:00
Forum: Users
Topic: Reduce the number of commands
Replies: 17
Views: 37087

Re: Reduce the number of commands

Thank's Now I think the command works, but.... solution first: I did a few small things. convert ( %%infile%% doesn't work but convert ( "%infile%" did the same problem at "%drawcmd%" The "ultimate" result :D : set infile=c:\temp\pic\hatching_orig.jpg for /f "useba...
by Albireo
2010-01-24T13:27:52-07:00
Forum: Users
Topic: Reduce the number of commands
Replies: 17
Views: 37087

Re: Reduce the number of commands

Thank you Pete for your time! I understand that it's not easy :) and I must say that I don't really can follow all lines of thought. I can't add as much :( I always write an ".BAT" file, because the command is long (and can't paste the command directly to a "DOS" window) I tried ...
by Albireo
2010-01-24T11:15:39-07:00
Forum: Users
Topic: Add "comment information" to images
Replies: 6
Views: 36348

Re: Add "comment information" to images

Thanks for the tip! ........http://www.imagemagick.org/script/command-line-options.php#comment....... I don't know how to use this "-comment" How can I put the comment in the images? (I've tried to just put the "-comment" in a convert command, but failed. I have also searched for...
by Albireo
2010-01-23T17:19:36-07:00
Forum: Users
Topic: Reduce the number of commands
Replies: 17
Views: 37087

Re: Reduce the number of commands

unix commands with black border added infile="hatching_orig.jpg" drawcmd=`convert $infile -define jpeg:size=300x300 -thumbnail "300x300>" \ -format "roundrectangle 1,1 %[fx:w+4],%[fx:h+4] 25,25" info:` convert \( $infile -define jpeg:size=300x300 -thumbnail "300x3...
by Albireo
2010-01-22T22:59:50-07:00
Forum: Users
Topic: From white to transparent (Solved)
Replies: 5
Views: 17243

Re: From white to transparent (Solved)

If the image is white at 0,0 (or any other pixel you want to identify), then try convert image -fill none -fuzz 20% -draw 'matte 0,0 floodfill' result.png This will floodfill the outside with transparency and not touch inside areas that are near white. Again adjust the fuzz value as desired. Good i...
by Albireo
2010-01-22T14:45:21-07:00
Forum: Users
Topic: From white to transparent (Solved)
Replies: 5
Views: 17243

Re: From white to transparent

convert image -fuzz XX% -transparent white result XX is tolerance to match white, try 5% ...... Thank you! It works! :) With 5% became the image rather "frayed". With 20% were the border line good. (however it began to emerge "weaker" color in the middle of the picture :-) //Jan
by Albireo
2010-01-22T12:30:45-07:00
Forum: Users
Topic: Reduce the number of commands
Replies: 17
Views: 37087

Re: Reduce the number of commands

Thank you! But when I converted the command to DOS / Windows is something wrong So now I try this: convert -define jpeg:size=300x300 c:\temp\pic\hatching_orig.jpg -thumbnail "300x300>" -write c:\temp\pic\pad_extent2.png ^ ( +clone -threshold -1 -draw "fill black polygon 0,0 0,25 25,0 ...