mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 07:32:44 +00:00 
			
		
		
		
	LibGfx: Add a TIFF loader
This commit is contained in:
		
							parent
							
								
									dc5bb5a4cc
								
							
						
					
					
						commit
						75caccafa4
					
				
					 6 changed files with 590 additions and 0 deletions
				
			
		|  | @ -19,6 +19,7 @@ | |||
| #include <LibGfx/ImageFormats/PPMLoader.h> | ||||
| #include <LibGfx/ImageFormats/QOILoader.h> | ||||
| #include <LibGfx/ImageFormats/TGALoader.h> | ||||
| #include <LibGfx/ImageFormats/TIFFLoader.h> | ||||
| #include <LibGfx/ImageFormats/TinyVGLoader.h> | ||||
| #include <LibGfx/ImageFormats/WebPLoader.h> | ||||
| 
 | ||||
|  | @ -44,6 +45,7 @@ static OwnPtr<ImageDecoderPlugin> probe_and_sniff_for_appropriate_plugin(Readonl | |||
|         { PNGImageDecoderPlugin::sniff, PNGImageDecoderPlugin::create }, | ||||
|         { PPMImageDecoderPlugin::sniff, PPMImageDecoderPlugin::create }, | ||||
|         { QOIImageDecoderPlugin::sniff, QOIImageDecoderPlugin::create }, | ||||
|         { TIFFImageDecoderPlugin::sniff, TIFFImageDecoderPlugin::create }, | ||||
|         { TinyVGImageDecoderPlugin::sniff, TinyVGImageDecoderPlugin::create }, | ||||
|         { WebPImageDecoderPlugin::sniff, WebPImageDecoderPlugin::create }, | ||||
|     }; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Lucas CHOLLET
						Lucas CHOLLET