ContentType - image/png와 application/octet-stream

 

ContentType 중 image/png와 application/octet-stream에 대한 간단 사용 코드 조각입니다.

 

서버로부터 이미지를 다운로드받을 때, 명확하게 image/png 형식이면 ContentType을 image/png로 설정하면 됩니다.

만약, 업로드된 이미지가 image/png를 포함한 일반적인 이미지 파일이라면,

일반적인 바이너리 파일로 판단하고 다운로드받을 수 있게 "application/octet-stream"으로 지정해도 됩니다.

//return this.File(memory, "image/png", Path.GetFileName(path));
return this.File(memory, "application/octet-stream", Path.GetFileName(path));

 

 

Comments


Comments are closed