Código ASP:
Ver original
<% Response.Expires = 0 imagen=request("imagen") Set Jpeg = Server.CreateObject("Persits.Jpeg") Jpeg.Open Server.MapPath("\"&imagen) 'tomo el ancho y el alto Jpeg.Width = Request("ancho") alto = Request("alto") crop=request("crop") Jpeg.Height = Jpeg.OriginalHeight * Jpeg.Width / Jpeg.OriginalWidth if alto<>"" then cropy=(Jpeg.Height/2)-(alto/2) cropy2=(Jpeg.Height/2)+(alto/2) Jpeg.Crop 0, cropy, Jpeg.Width, cropy2 end if Jpeg.PNGOutput = true Jpeg.Quality=80 Jpeg.SendBinary %>