SenseNet.ContentRepository.Image.CreateResizedImageFile C# (CSharp) 메소드

CreateResizedImageFile() 공개 정적인 메소드

public static CreateResizedImageFile ( Stream originalStream, string ext, double x, double y, double q, string contentType ) : Stream
originalStream Stream
ext string
x double
y double
q double
contentType string
리턴 Stream
        public static Stream CreateResizedImageFile(Stream originalStream, string ext, double x, double y, double q, string contentType)
        {
            return ImageResizer.CreateResizedImageFile(originalStream, x, y, q, getImageFormat(contentType));
        }
        protected override void OnCreated(object sender, SenseNet.ContentRepository.Storage.Events.NodeEventArgs e)