making a hi-res image file .tif invoke the "save as&quo
Posted: Tue Feb 11, 2003 9:11 am
problem: I would like a "save as prompt" for my .tif images on php products hi-res images.
Solutions:..
1) zip them before putting on server (not acceptable )
2) try and compress them on the unix box as .zip files. then the save as box will appear.
will using gzwrite work..?
$string = $test.tif
$gz = gzopen("testtif.zip","w9");
gzwrite($gz,$string);
gzclose($gz);
does this need to be set to ON to use gzwrite..?
(I get permission errors now)
Directive Local Value /Master Value
zlib.output_compression Off /Off

Solutions:..
1) zip them before putting on server (not acceptable )
2) try and compress them on the unix box as .zip files. then the save as box will appear.
will using gzwrite work..?
$string = $test.tif
$gz = gzopen("testtif.zip","w9");
gzwrite($gz,$string);
gzclose($gz);
does this need to be set to ON to use gzwrite..?
(I get permission errors now)
Directive Local Value /Master Value
zlib.output_compression Off /Off