Search found 457 matches

by GreenKoopa
2010-11-17T11:11:46-07:00
Forum: Users
Topic: Batch compose with alpha overlay
Replies: 2
Views: 6761

Re: Batch compose with alpha overlay

I'm not clear on the question. To get all image pairs processed, won't they have to be all looped over one way or another?
by GreenKoopa
2010-11-17T11:06:25-07:00
Forum: Users
Topic: How do I fully subtract one image from another?
Replies: 7
Views: 19894

Re: How do I fully subtract one image from another?

I'm performing this operation: composite "Original.png" "ToRemove.png" -compose dst_out "Destination.png" Wouldn't it be: ? composite "ToRemove.png" "Original.png" -compose dst_out "Destination.png" And I don't produce that problem with th...
by GreenKoopa
2010-11-17T09:48:27-07:00
Forum: Users
Topic: Best way to upscale pixel art exactly 200%
Replies: 27
Views: 92541

Re: Best way to upscale pixel art exactly 200%

:shock:
Halle wrote:Best way to upscale pixel art exactly 200%
NicolasRobidoux wrote:(Apologies for using this post to get my thoughts straight about a few things, and most likely being way too technical.)
I guess a lesson to Halle and the rest of us to avoid superlatives in our subject lines.
by GreenKoopa
2010-11-17T09:31:25-07:00
Forum: Users
Topic: Crop HD Frames in Half
Replies: 3
Views: 7861

Re: Crop HD Frames in Half

I don't immediately see anything helpful. No, a setting after should not affect a command from before. Settings before, even ones intended for another operation (even when in parentheses) will. Is the black frame the correct size? It would be helpful if you could provide the shortest example that ha...
by GreenKoopa
2010-11-16T16:23:24-07:00
Forum: Users
Topic: How to find coordinates of pixels that two images differ in?
Replies: 5
Views: 10761

Re: How to find coordinates of pixels that two images differ

Your difference image could take many forms, most simply white for pixel is different and black is pixel is same (or the other way around). In any case, any image can be saved in several formats, including text. See:
http://www.imagemagick.org/Usage/files/#txt

Is that like what you need?
by GreenKoopa
2010-11-16T15:43:23-07:00
Forum: Users
Topic: How to find coordinates of pixels that two images differ in?
Replies: 5
Views: 10761

Re: How to find coordinates of pixels that two images differ

Sure you could do this with ImageMagick. The output could be an image or text (but probably require some post-processing on your part to get it in the format you require).
by GreenKoopa
2010-11-16T13:48:44-07:00
Forum: Users
Topic: Determine transparent pixels and generate alpha channel
Replies: 1
Views: 4403

Re: Determine transparent pixels and generate alpha channel

And is it possible to generate an alpha channel for this image where all fully transparent pixels are black and all solid pixels are white? It should be possible that semi transparent pixels should get gray in the alpha channel. The more a pixel is transparent in the image the darker the gray level...
by GreenKoopa
2010-11-15T12:52:40-07:00
Forum: Users
Topic: Best way to upscale pixel art exactly 200%
Replies: 27
Views: 92541

Re: Best way to upscale pixel art exactly 200%

My apologies for assuming you wanted to keep the 'blocky' pixelated look. Using a separate filter for alpha: convert in.png -filter your_color_filter -resize 200% rgb.png convert in.png -channel A -separate -filter your_alpha_filter -resize 200% alpha.png convert rgb.png -channel RGB -separate alpha...
by GreenKoopa
2010-11-15T05:24:45-07:00
Forum: Users
Topic: Detect text or pixel outside ?
Replies: 3
Views: 7563

Re: Detect text or pixel outside ?

You could generate a label: of a specified -size, or create a label: and then -crop it. Do you know how you would handle too much text if you could detect it overflowing? Yes, you can determine the width of the new label: canvas.
by GreenKoopa
2010-11-15T05:03:36-07:00
Forum: Users
Topic: Best way to upscale pixel art exactly 200%
Replies: 27
Views: 92541

Re: Best way to upscale pixel art exactly 200%

-distort is powerful, but complex enough to have its own examples page . It shines most when combining two resample operations, such as resizing and rotating in a single step. It handles many other needs too, but I don't yet understand why it would be worth the headache for a simple resize. If you ...
by GreenKoopa
2010-11-14T17:50:11-07:00
Forum: IMagick
Topic: IMagicK for Text Based Files
Replies: 4
Views: 13270

Re: IMagicK for Text Based Files

Disgracefully, I am limited in my Linux knowledge. On Windows, I use Bullzip's PDF Printer . Installed as a print driver, it converts a print job to a file. Despite the name, several save formats are supported. It supports command-line and COM interfaces, but I have yet to personally use those. Beca...
by GreenKoopa
2010-11-14T16:58:00-07:00
Forum: Users
Topic: Best way to upscale pixel art exactly 200%
Replies: 27
Views: 92541

Re: Best way to upscale pixel art exactly 200%

I would certainly take NicolasRobidoux or Anthony's advice over mine.
by GreenKoopa
2010-11-14T16:41:34-07:00
Forum: IMagick
Topic: IMagicK for Text Based Files
Replies: 4
Views: 13270

Re: IMagicK for Text Based Files

I have never done this personally, but I saw some examples over at:
ImageMagick v6 Examples > Text to Image Handling > Text - Formatted Pages of Text

For alternatives: Are you on Windows? Require a command-line interface?
by GreenKoopa
2010-11-14T11:41:59-07:00
Forum: Users
Topic: -colorspace, -profile, and Lab
Replies: 0
Views: 3653

-colorspace, -profile, and Lab

I see how to convert between RGB and Lab using -colorspace . I eventually figured out how to go between color profiles (Adobe RGB, ProPhoto RGB, Gray Gamma 2.2, etc.) using -profile . I can't find any way to go from a color -profile to Lab color . This can be very useful when resampling, sharpening,...
by GreenKoopa
2010-11-14T10:59:46-07:00
Forum: Users
Topic: Best way to upscale pixel art exactly 200%
Replies: 27
Views: 92541

Re: Best way to upscale pixel art exactly 200%

You seem very determined, so here is more: The easiest and most accurate way to compare two results: Put them exactly on top of each other and switch between. This lets your eye catch the subtle differences. I find it aids comparing, and learning too. (Does anyone know how to create an image file wi...