Search found 2 matches

by BenSande
2015-07-28T01:41:37-07:00
Forum: Users
Topic: Using Stream as a Batch Tool
Replies: 4
Views: 3810

Re: Using Stream as a Batch Tool

Mogrify doesn't have the ability to stream to a binary short storage file, which is what I really need. Neither does convert, otherwise I would be using that. The -map and -storage-type tools are stream only. I have found a workaround to this problem using for loops, but if anyone knows of a slicker ...
by BenSande
2015-07-27T08:10:15-07:00
Forum: Users
Topic: Using Stream as a Batch Tool
Replies: 4
Views: 3810

Using Stream as a Batch Tool

I'm trying to use stream to produce a file of the greyscale data for each of a large number of .bmp files. Based on the batch syntax of convert, I tried stream -map i -storage-type short *.bmp *.raw which did not work. I get one file titled *.raw, which seems to be the data from just the first file ...