Search found 5 matches
- 2016-12-18T16:01:43-07:00
- Forum: Users
- Topic: Filelist (@list.txt) quote escape
- Replies: 4
- Views: 5634
Re: Filelist (@list.txt) quote escape
So this is a bug?
- 2016-12-18T13:59:54-07:00
- Forum: Users
- Topic: Filelist (@list.txt) quote escape
- Replies: 4
- Views: 5634
Filelist (@list.txt) quote escape
Hello, I have some trouble figuring the escape type needed in the following case: $ ls -1 --quoting-style=literal test* test "'.png test.png $ cat list.txt 'test "'\''.png' test.png $ montage @list.txt out.png montage: unable to open image `test "': No such file or directory @ error/blob.c/OpenBlob ...
- 2015-08-27T02:50:18-07:00
- Forum: Users
- Topic: Convert from grayscale to sRGB colorspace
- Replies: 6
- Views: 4310
Re: Convert from grayscale to sRGB colorspace
Looks like it works too with -define (identify -format '%[colorspace]' out.png gives me sRGB).
- 2015-08-26T15:20:29-07:00
- Forum: Users
- Topic: Convert from grayscale to sRGB colorspace
- Replies: 6
- Views: 4310
Re: Convert from grayscale to sRGB colorspace
Sorry, I was using an outdated version. I needed PNG24 output to go with Vapoursynth's IM plugin.
Using worked.
Also, it looks like the -define option is listed here.
Using
Code: Select all
convert -colorspace sRGB -set "colorspace:auto-grayscale" "false" in.png PNG24:out.png
Also, it looks like the -define option is listed here.
- 2015-08-26T13:50:37-07:00
- Forum: Users
- Topic: Convert from grayscale to sRGB colorspace
- Replies: 6
- Views: 4310
Convert from grayscale to sRGB colorspace
The tast I'm trying to accomplish isn't extraordinary but i'm failing hard at it. I've seen some forum topics, but their solutions didn't work for me. convert -colorspace sRGB -define "colorspace:auto-grayscale=off" -define "png:color-type=6" in.png out.png Didn't work. Also tried with -set ...