How to set default zoom level in php header for pdf while downloading -


i using following header download pdf

header('pragma: public'); header('expires: 0'); header('cache-control: must-revalidate, post-check=0, pre-check=0'); header('cache-control: private',false); header('content-type: application/force-download'); header('content-disposition: attachment; filename="business report.pdf"'); header('content-transfer-encoding: binary'); 

is possible set default zoom level pdf when open pdf


Comments

Popular posts from this blog

sql - can we replace full join with union of left and right join? why not? -

javascript - Parallax scrolling and fixed footer code causing width issues -

iOS: Performance of reloading UIImage(name:...) -