mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:02:45 +00:00 
			
		
		
		
	 1682f0b760
			
		
	
	
		1682f0b760
		
	
	
	
	
		
			
			SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			987 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			987 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Hüseyin ASLITÜRK <asliturk@hotmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibGfx/Bitmap.h>
 | |
| #include <LibGfx/ImageDecoder.h>
 | |
| 
 | |
| namespace Gfx {
 | |
| 
 | |
| RefPtr<Gfx::Bitmap> load_pbm(const StringView& path);
 | |
| RefPtr<Gfx::Bitmap> load_pbm_from_memory(const u8*, size_t);
 | |
| 
 | |
| struct PBMLoadingContext;
 | |
| 
 | |
| class PBMImageDecoderPlugin final : public ImageDecoderPlugin {
 | |
| public:
 | |
|     PBMImageDecoderPlugin(const u8*, size_t);
 | |
|     virtual ~PBMImageDecoderPlugin() override;
 | |
| 
 | |
|     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<PBMLoadingContext> m_context;
 | |
| };
 | |
| 
 | |
| }
 |