AndrewFerrara
AndrewFerrara

Reputation: 2403

Imagick saving from browser as a php file

I have a php/imagick script that outputs a png image but when I go to save it from the browser it saves as the file name: index.php I want it to save as a png when you click save as image in your browser.

link: http://www.halogamertags.com/signatures/index.php?player=yoinked%20ya

How can I do that?

Upvotes: 0

Views: 221

Answers (1)

ceejayoz
ceejayoz

Reputation: 180157

header('Content-Disposition: attachment; filename="filename.png"');

Upvotes: 4

Related Questions