Search found 12 matches

by mambo4
2016-01-21T16:24:56-07:00
Forum: Users
Topic: convert -help for specific options
Replies: 1
Views: 2405

convert -help for specific options

does -help have a way top display more detailed info for specific options?
like typing

Code: Select all

 convert -help -resize 
and get better details about -resize, for example
by mambo4
2013-12-17T12:57:04-07:00
Forum: Users
Topic: Flatten Tiff, but preserve alpha channel
Replies: 1
Views: 2408

Flatten Tiff, but preserve alpha channel

I want to flatten a layered tiff while retaining the alpha channel.

using this:
convert ../source.tif -alpha on -layers flatten -filter lanczos -resize 1024x1024 -unsharp 1x0.5 %temp%/temp.tga

I lose my alpha channel, what should be transparent turns opaque white.
by mambo4
2013-09-10T10:26:13-07:00
Forum: Users
Topic: Do i need all 50 MB of ImageMagick?
Replies: 8
Views: 6691

Re: Do i need all 50 MB of ImageMagick?

ok, I understand that *all * the junk in the imageMagick folder is in fact needed.
in that case simple passing ImageMagick-6.8.6-9-Q16-x64-dll.exe to the art team should be sufficient.
by mambo4
2013-09-09T16:30:28-07:00
Forum: Users
Topic: Do i need all 50 MB of ImageMagick?
Replies: 8
Views: 6691

Re: Do i need all 50 MB of ImageMagick?

for give my ignorance, I must be misunderstanding something. each of the downloads appear to unzip into a folder chock full of .exe and .dll files (among other stuff) is there meant to be a singular exe or dll which can run all of the image magick functions? if so it must be buried within this colle...
by mambo4
2013-09-09T15:04:28-07:00
Forum: Users
Topic: Do i need all 50 MB of ImageMagick?
Replies: 8
Views: 6691

Re: Do i need all 50 MB of ImageMagick?

the image magick downloads I can locate form the download page do not appear to include these portable or dll versions.
at least, a download of such is not easily identifiable by the link names.

where do I find the dll version?
where do I find the portable version?
by mambo4
2013-09-09T14:51:42-07:00
Forum: Users
Topic: Strange "add" behaviour
Replies: 31
Views: 30808

Re: Strange "add" behaviour

nice! 2 questions: 1.) NVIDIA tools include a DXT5n compression setting for compressing normal maps -which is useful as normal maps require careful compression to preserve the normal data. any such options for imagemagick? 2.) Some utilities allow specifying the number of mip levels. at my studio, w...
by mambo4
2013-08-29T11:05:44-07:00
Forum: Users
Topic: Do i need all 50 MB of ImageMagick?
Replies: 8
Views: 6691

Do i need all 50 MB of ImageMagick?

I'm building art tools for game development I use ImageMagick command lines to process some of the textures. Now I'm faced with building the tool installs for the art team, and I'd prefer to keep it a lightweight as possible. I see the install folder for IamgeMagick is around 50 MB I find that conve...
by mambo4
2013-08-27T09:30:35-07:00
Forum: Users
Topic: Tiff to sdds with alpha composting command line
Replies: 9
Views: 8571

trouble flattening layered tiff

So I've been converting layered tiffs (dozens of layers) using this command convert in_file.tif -alpha off -layers flatten -filter lanczos -resize 256x256 -unsharp 1x0.5 out_file.tif but the result is that only the bottom layer gets resized, the remaining layers get cropped. if I set the format of o...
by mambo4
2013-08-22T17:54:58-07:00
Forum: Users
Topic: Strange "add" behaviour
Replies: 31
Views: 30808

Re: Strange "add" behaviour

There are a few command line tools for dds conversion. Nvidia has nvconvert, part of Nvidia texture tools https://code.google.com/p/nvidia-texture-tools/ ATI hasTheConversionator ( which i am using) http://developer.amd.com/resources/archive/archived-tools/gpu-tools-archive/the-compressonator/#downl...
by mambo4
2013-08-21T15:59:16-07:00
Forum: Users
Topic: Tiff to sdds with alpha composting command line
Replies: 9
Views: 8571

Re: Tiff to sdds with alpha composting command line

thanks again!
by mambo4
2013-08-21T15:46:31-07:00
Forum: Users
Topic: Tiff to sdds with alpha composting command line
Replies: 9
Views: 8571

Re: Tiff to sdds with alpha composting command line

thanks for the response. I'm not unix but win7.
your answers seem enough to point me in the right direction.
by mambo4
2013-08-21T15:22:26-07:00
Forum: Users
Topic: Tiff to sdds with alpha composting command line
Replies: 9
Views: 8571

Tiff to sdds with alpha composting command line

I'm new to image magick, working on a game texture tool for my studio I need a batch-able tool that can take 4 layered 1024 tiffs: filename_diffuse.tif (24bit) filename_emissive.tif (8bit grayscale) filename_normal.tif (24bit) filename_specular.tif (8bit grayscale) and perform the following via comm...