Readimage low resolution C++
Posted: 2013-05-17T01:21:38-07:00
I use the imagemagick++ API in my C++ programm. Readimage is used to read a multi-pages PDF file. But the resolution of the output image is too low.
vector<Image> imageList;
readImages( &imageList, "E:/ww.pdf" );
for(int i = 0; i < imageList.size(); i++)
{imageList.density("300");}
writeImages( imageList.begin(), imageList.end(), "D:/yes.tif" );
Is there some solutions to improve the resolution.
vector<Image> imageList;
readImages( &imageList, "E:/ww.pdf" );
for(int i = 0; i < imageList.size(); i++)
{imageList.density("300");}
writeImages( imageList.begin(), imageList.end(), "D:/yes.tif" );
Is there some solutions to improve the resolution.