[Delphi] 델파이 이미지 파일크기 축소


[Delphi] 델파이 이미지 파일크기 축소

프로그래밍 하다 보면, 이미지 파일의 크기를 축소해서 서버에 업로드 해야 하는 경우가 많다. 특히, 썸네일을 만들어야 할 경우 반드시 축소를 해야 한다. 아래 함수는 실제 적용해서 사용중인 함수이다. uses 절에 Graphics, Imaging, GraphUtil aSourceImageFile : 원본파일명 aResultPngFile : 축소파일명 ThumbnailSize : 축소사이즈 // 파일 function ResizeImageFile(aSourceImageFile, aResultPngFile: String; ThumbnailSize: Integer): Boolean; function FileSize(FileName: string): Int64; // // Picture 리사이징. 가로MAX = ThumbnailSize. // function ResizeImageFile(aSourceImageFile, aResultPngFile: String; ThumbnailSize: In...



원문링크 : [Delphi] 델파이 이미지 파일크기 축소