mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:22:43 +00:00 
			
		
		
		
	 649d2faeab
			
		
	
	
		649d2faeab
		
	
	
	
	
		
			
			We had some inconsistencies before: - Sometimes "The", sometimes "the" - Sometimes trailing ".", sometimes no trailing "." I picked the most common one (lowecase "the", trailing ".") and applied it to all copyright headers. By using the exact same string everywhere we can ensure nothing gets missed during a global search (and replace), and that these inconsistencies are not spread any further (as copyright headers are commonly copied to new files).
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1,017 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1,017 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Vector.h>
 | |
| #include <LibGfx/Bitmap.h>
 | |
| #include <LibGfx/ImageDecoder.h>
 | |
| #include <LibGfx/Size.h>
 | |
| 
 | |
| namespace Gfx {
 | |
| 
 | |
| RefPtr<Gfx::Bitmap> load_jpg(String const& path);
 | |
| RefPtr<Gfx::Bitmap> load_jpg_from_memory(const u8* data, size_t length);
 | |
| 
 | |
| struct JPGLoadingContext;
 | |
| 
 | |
| class JPGImageDecoderPlugin : public ImageDecoderPlugin {
 | |
| public:
 | |
|     virtual ~JPGImageDecoderPlugin() override;
 | |
|     JPGImageDecoderPlugin(const u8*, size_t);
 | |
|     virtual IntSize size() override;
 | |
|     virtual RefPtr<Gfx::Bitmap> bitmap() override;
 | |
|     virtual void set_volatile() override;
 | |
|     [[nodiscard]] virtual bool set_nonvolatile() override;
 | |
|     virtual bool sniff() override;
 | |
|     virtual bool is_animated() override;
 | |
|     virtual size_t loop_count() override;
 | |
|     virtual size_t frame_count() override;
 | |
|     virtual ImageFrameDescriptor frame(size_t i) override;
 | |
| 
 | |
| private:
 | |
|     OwnPtr<JPGLoadingContext> m_context;
 | |
| };
 | |
| }
 |