Search found 25563 matches

by fmw42
2009-01-19T12:14:28-07:00
Forum: Users
Topic: most colors used (color analysis)
Replies: 20
Views: 59107

Re: most colors used (color analysis)

denisnikulin wrote:how is it possible to get the percentage of colors?
for example:

Code: Select all

convert picture.jpg -colors 2 -unique-colors txt:- 
it gives 2 most colors, used in picture. but what is the most of them? )


convert picture.jpg -colors 2 -format "%c" histogram:info:
by fmw42
2009-01-17T17:10:03-07:00
Forum: Users
Topic: Making box image for any image
Replies: 3
Views: 6789

Re: Making box image for any image

Great! :lol: Thank you. This is the command, that solve my problem: convert candelete.jpg -resize "100X100^" -gravity center -crop 100X100+0+0 win: It's working. Thank you. You should keep the +repage at the end to avoid the virtual canvas size being different from the image, so that furt...
by fmw42
2009-01-17T13:39:34-07:00
Forum: Users
Topic: Making box image for any image
Replies: 3
Views: 6789

Re: Making box image for any image

try convert inputimage -resize 100x100^ -gravity center -crop 100x100+0+0 +repage outputimage see -resize and image geometries about the use ^ for making the smaller dimension resize to 100. http://www.imagemagick.org/script/command-line-processing.php#geometry also see http://www.imagemagick.org/Us...
by fmw42
2009-01-16T18:54:06-07:00
Forum: Users
Topic: Newbie here needs help
Replies: 32
Views: 49121

Re: Newbie here needs help

IM quality factors may not be truly linear percents.
by fmw42
2009-01-13T23:04:14-07:00
Forum: Users
Topic: Perspective Distortion by command line doesn't works
Replies: 5
Views: 10389

Re: Perspective Distortion by command line doesn't works

By default -distort perspective uses elliptically weighted area filtering to avoid aliasing artifacts. But you can use other filters using the -filter setting. To turn off filtering use -filter point. To use the best non-area filter, try -filter lanczos. See http://www.imagemagick.org/script/command...
by fmw42
2009-01-13T17:50:17-07:00
Forum: Users
Topic: Command Line Processing: Convert -crop Output File Name
Replies: 1
Views: 5289

Re: Command Line Processing: Convert -crop Output File Name

I am a new user of Magick. I believe this is the best forum to post this question. If not, please direct me to the appropriate forum. I am using the command line processing command convert as follows: convert 16141869_cutprofile.jpg -crop "700X500" 16141869_cutprofile.jpg Instead of the o...
by fmw42
2009-01-13T17:45:26-07:00
Forum: Bugs
Topic: Rotation/Distortion after stroking text weirdness
Replies: 6
Views: 13953

Re: Rotation/Distortion after stroking text weirdness

try setting -virtual-pixel background -background white
by fmw42
2009-01-12T16:46:48-07:00
Forum: Users
Topic: Tilt Shift Miniaturization : Blur effect
Replies: 5
Views: 13526

Re: Tilt Shift Miniaturization : Blur effect

That is a nice example and his blurring is done via a pseudo-depth mask. But in order to try anything we need a good example of the raw image and a version of the final image to try to match to.
by fmw42
2009-01-12T16:40:15-07:00
Forum: Users
Topic: Is there any way to create 4-bit BMP or PNG files with IM?
Replies: 2
Views: 15287

Re: Is there any way to create 4-bit BMP or PNG files with IM?

I cannot say for sure what is up to date, but see http://www.imagemagick.org/Usage/formats/#bmp " IM can not produce BMP's at depth levels other than 8. However you can use NetPBM image processing set to do the final conversion to other depth levels (This needs at least a Q16 version of IM)... ...
by fmw42
2009-01-10T20:50:26-07:00
Forum: Users
Topic: Tilt Shift Miniaturization : Blur effect
Replies: 5
Views: 13526

Re: Tilt Shift Miniaturization : Blur effect

I'm wondering if there's an easy way to create the Tilt Shift effect? http://tiltshiftmaker.com/tilt-shift-photo-gallery.php It seems it can be done just by blurring parts of the photo, and maybe upping the colors? Here is the photoshop tutorial. http://www.tiltshiftphotography.net/photoshop-tutori...
by fmw42
2009-01-09T13:01:10-07:00
Forum: Users
Topic: Generate animated Gif with one command without inteference
Replies: 5
Views: 11312

Re: Generate animated Gif with one command without inteference

Hi, a stupid question: What do all theses backslashes \ mean? I am executing this command on a german windows vista cmd.exe and get errors when executing this command. In the example i posted i had to remove all the \ and place the command into one line. I cant get this example to run. Either the \...
by fmw42
2009-01-09T12:35:00-07:00
Forum: Users
Topic: Generate animated Gif with one command without inteference
Replies: 5
Views: 11312

Re: Generate animated Gif with one command without inteference

Hi, I want to use IM to generate gifs dynamically in a website (ASP.NET). The following source seems to create 4 gif files temporary in 4 commands and use a 5th command to merge them. I am afraid that this approach could fail when multiple users generate gifs at the same time so IM could get mixed ...