php - change DPI of image from 72 to 300 using intervention -
i working laravel , using in image processing. want increase dpi of image. didn't see documentation regarding dpi here. there solution in php or other method php or laravel?
intervention image not support this, can change dpi imagemagick using -unit pixelsperinch option. example:
exec('convert -units pixelsperinch originalimage -resample 300 outputiamge');
Comments
Post a Comment