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

c# - Is it possible to remove an existing registration from Autofac container builder? -

c++ - Warning : overflow in implicit constant conversion -

php - Mysql PK and FK char(36) vs int(10) -