Thanks Chris Smemoe and jratike80,
I found a solution, thanks to you both. I create my palette image in
photoshop, then with gdal, I create my VRT fron that image and then, all my
next images with the same colors with rgb2pct...
Like a charm.
If you know best approach, please let-me know.
Thank
Paulo Pires wrote
> theres any help, please?
>
> RGB to Palette...
> CMYK to Palette...
>
> Thanks
Have you tried http://www.gdal.org/rgb2pct.html?
-Jukka Rahkonen-
--
Sent from: http://osgeo-org.1560.x6.nabble.com/GDAL-Dev-f3742093.html
___
gdal-d
: Sunday, February 04, 2018 4:30 AM
To: gdal-dev@lists.osgeo.org
Subject: Re: [gdal-dev] RGB to PALETTE conversion
theres any help, please?
RGB to Palette...
CMYK to Palette...
Thanks
--
Sent from: http://osgeo-org.1560.x6.nabble.com/GDAL-Dev-f3742093.html
theres any help, please?
RGB to Palette...
CMYK to Palette...
Thanks
--
Sent from: http://osgeo-org.1560.x6.nabble.com/GDAL-Dev-f3742093.html
___
gdal-dev mailing list
gdal-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/gdal-dev
Hello,
I'm trying to convert RGB image to PALETTE image with PIL:
/img = Image.open(tiffile)
img = img1convert("P", palette=Image.ADAPTIVE, colors=256)
img.save(newtiffile+"_index.tif")
img.close()/
...but, for example, the white color is 245, not 255 :(
And from CMYK to PALETTE? Is it pos