On 24/12/2017 at 14:39, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 19
Platform: Windows ;
Language(s) : C++ ;
---------
SAVEBIT_GREYSCALE does not seem to be working in R19.
I have following code that is working in R16-R18, but not in R19.
The file is created and save, but not in greyscale but in standard rgb.
Could it be, because I save the file using 24 bits?
But then again, it is working (I get a greyscale) in R16-R18.
AutoAlloc<BaseBitmap> outFile;
outFile->Init(2048, 1024, 24);
...
res = outFile->Save(fileLocation, FILTER_JPG, nullptr, SAVEBIT_GREYSCALE);