How do I Force File Download at Page Level via .htaccess

From what i’ve read, this line of code in the .htaccess file will force a sitewide download prompt for the file I associate in the code; in this case .png

AddType application/octet-stream .png

I’m trying to accomplish this forced download for just one page, my logo download page. How would I write this, or is it possible?

Any thoughts on the above?

This might be what you’re looking for:

Forcing a Download Dialog

If the images are in a directory of their own, i.e. a directory with just the logo images and no other images, you could create an .htaccess in that directory so it works on that directory only.
Alternatively you could see if either <Files> or <FilesMatch> can help you.