Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
198 views
in Technique[技术] by (71.8m points)

php - ImageMagik - Saving as a file is ok, but outputing to web page is corrupted

I am using ImageMagik on my Debian server (apt-get install php5.6-imagick).

As expected, this bit of code reads in a picture and saves a copy elsewhere:

$canvas = new Imagick( "/var/www/websites/DisplayScreen/Slideshow Photos/20161016_151555.jpg" );
$canvas->writeImage("/var/www/websites/DisplayScreen/20161016_151555.jpg");

When I change the code to:

$canvas = new Imagick( "/var/www/websites/DisplayScreen/Slideshow Photos/20161016_151555.jpg" );
header( "Content-Type: image/jpg" );
echo $canvas;

and call it from a web page, a file that is a similar size to the original is delevered but is not recognised by the browser (or Paint Shop Pro). The output image seems to have been corrupted.

I have tried header( "Content-Type: image/jpeg" ); and echo $canvas->getImageBlob(); as varients to the above, but get the same result.

All help gratefully received...

question from:https://stackoverflow.com/questions/65646731/imagemagik-saving-as-a-file-is-ok-but-outputing-to-web-page-is-corrupted

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

It turns out the problem was that I had a blank line in my php source file before the <?php

This, obviously, was being output ahead of the image and therefore corrupting it (but, also obviously, didn't affect writing the image out to disk).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...