BaconographyPortable.Services.Impl.SmartOfflineImageService.GenerateResizedImage C# (CSharp) Method

GenerateResizedImage() public method

public GenerateResizedImage ( object inputFile, uint width, uint height, uint edgePadding = 5, uint bottomPadding = 20, bool replaceIfExists = true ) : Task
inputFile object
width uint
height uint
edgePadding uint
bottomPadding uint
replaceIfExists bool
return Task
        public Task<object> GenerateResizedImage(object inputFile, uint width, uint height, uint edgePadding = 5, uint bottomPadding = 20, bool replaceIfExists = true)
        {
            return _imagesService.GenerateResizedImage(inputFile, width, height, edgePadding, bottomPadding, replaceIfExists);
        }