public void TestBatchResize()
        {
            var paths = new List <string>()
            {
                string.Format(FileTestPathFormat, "Blue Sky.jpg"), string.Format(FileTestPathFormat, "Marbles.PNG")
            };

            Resizer.BatchResize(paths, 23);
        }
示例#2
0
        public void Compress()
        {
            var filePaths = _Populator.FilePathList;

            _Compressor.BatchResize(filePaths, _Quality);
        }