Hello,
In our software we allow users to load multiple images. Each image is on a separate layer.
We save such files as layer files.
Till there things work just great.
But when we Merge all Layers and try to save the file in JPG we want the final output file to be of 200 DPI. Tried everything that I know about ImageEn to cannot get expected result.
Setting parameters is not getting expected result...
For example I am setting following with hope to get expected DPI output in the final JPG file saved:
ImageEnViewMain.DpiX := 200
ImageEnViewMain.DpiY := 200;
ImageEnViewMain.IO.Params.JPEG_Quality := 100;
ImageEnViewMain.IO.Params.JPEG_Smooth := 3;
ImageEnViewMain.IO.Params.JPEG_Progressive := False;
ImageEnViewMain.IO.Params.JPEG_ColorSpace := ioJPEG_RGB;
ImageEnViewMain.IO.SaveToFileJpeg(FlName);
The above code does not yield expected result.
Please help me.
TIA
Yogi Yang