tcpdf - Best way to convert pdf to greyscale with php? -


if want convert pdf greyscale whats best way go it. im using tcpdf convert html pdf need option can convert greyscale. whats best way go doing this.

if have imagick (imagemagick) installed, can take generated pdf , save gray-scaled one.

$image = new imagick('generatedpdf.pdf'); $image->setcolorspace(imagick::colorspace_gray); $image->writeimage('newpic.pdf'); $image->clear(); $image->destroy(); 

Comments

Popular posts from this blog

python - Does anyone know how to configure the hunpos wrapper class on nltk? -

mysql - How to insert just year and month into date field? -