mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			427 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			427 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
 | |
| namespace MediaBrowser.Controller.MediaEncoding
 | |
| {
 | |
|     public class ImageEncodingOptions
 | |
|     {
 | |
|         public string InputPath { get; set; }
 | |
|         
 | |
|         public int? Width { get; set; }
 | |
| 
 | |
|         public int? Height { get; set; }
 | |
| 
 | |
|         public int? MaxWidth { get; set; }
 | |
| 
 | |
|         public int? MaxHeight { get; set; }
 | |
| 
 | |
|         public int? Quality { get; set; }
 | |
|         
 | |
|         public string Format { get; set; }
 | |
|     }
 | |
| }
 |