crear thumbnail con ASP.NET
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
using ( Image bigImage = new Bitmap( filename ) ) { int height = bigImage.Height / 10; int width = bigImage.Width / 10; using ( Image smallImage = image.GetThumbnailImage( width, height, new Image.GetThumbnailImageAbort(Abort), IntPtr.Zero) ) { smallImage.Save("thumbnail.jpg", ImageFormat.Jpeg); } }