How to use Chilkat S3_DownloadBytes and S3_UploadBytes to copy images in Classic ASP

Copy images between Amazon s3 buckets in memory only using Chilkat’s S3_DownloadBytes and S3_UploadBytes. Example classic ASP code.  Function http_copy_bytes(contentType,bucketSourceName,bucketDestName,objectName,justFileName)     Dim success, binaryImage      ‘ Set up chilkat http     Dim http : Set http = Server.CreateObject(“Chilkat.Http”)     http_unlock(http)     http.AwsAccessKey = AwsAccessKey ‘ your key     http.AwsSecretKey = AwsSecretKey ‘ your key ... » read more