Search found 3 matches
- 2017-07-15T11:05:54-07:00
- Forum: Users
- Topic: How to change BMP color without changing original palette?
- Replies: 4
- Views: 4210
Re: How to change BMP color without changing original palette?
Thanks Sam. I've just checked how many files will require this treatment and it's far less than I anticipated (less than 100). Considering small size of these BMPs I will do the conversion manually and include them in mod package.
- 2017-07-15T09:50:24-07:00
- Forum: Users
- Topic: How to change BMP color without changing original palette?
- Replies: 4
- Views: 4210
Re: How to change BMP color without changing original palette?
Thanks, snibgo. The feature is needed for game modification installed by a player. Distributing whole gimp in a mod package would be excessive (especially for 3 operating systems) since this change is meant to be done ‘on the fly’ for hundreds of files. Distributing already converted files would be b ...
- 2017-07-15T08:33:56-07:00
- Forum: Users
- Topic: How to change BMP color without changing original palette?
- Replies: 4
- Views: 4210
How to change BMP color without changing original palette?
Hello, I'm trying to use ImageMagick to switch single color that exists in BMP image original palette (#ffff00) into another color from existing pallete (#800000). Here is the code I’ve tried: magick.exe input.BMP -fill "#800000" -opaque "#ffff00" -type palette output.BMP The problem is that I ...