mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-03-30 22:19:17 +02:00

This fixes the issue where the calculation for the offset of the image data was incorrect. Instead of just looking at the first byte past the end of the BITMAPINFOHEADER we now correctly calculate the offset past the color palette and begin reading the image there. This stops the problems where sometimes the image looked like it had been shifted, or other cases where the image colors went retro.
27 lines
881 B
C
27 lines
881 B
C
/*!
|
|
* @file clipboard_image.h
|
|
* @brief Declarations for clipboard image handling functionality
|
|
*/
|
|
#ifndef _METERPRETER_SOURCE_EXTENSION_EXTAPI_CLIPBOARD_IMAGE_H
|
|
#define _METERPRETER_SOURCE_EXTENSION_EXTAPI_CLIPBOARD_IMAGE_H
|
|
|
|
typedef struct _ConvertedImage
|
|
{
|
|
/*!
|
|
* @brief Pointer to a pointer which will receive the JPEG image data buffer.
|
|
* This value is allocated using \c malloc prior to returning. If after
|
|
* calling this function the value is non-NULL the caller must call
|
|
* \c free to release this memory.
|
|
*/
|
|
PBYTE pImageBuffer;
|
|
/*!
|
|
* @brief The size of the \c pImageBuffer buffer.
|
|
*/
|
|
DWORD dwImageBufferSize;
|
|
} ConvertedImage;
|
|
|
|
DWORD get_bitmapinfo_size(const LPBITMAPINFO lpBI, BOOL bRGB);
|
|
DWORD convert_to_jpg(const LPBITMAPINFO lpBI, const LPVOID lpDIB, ULONG ulQuality, ConvertedImage* pImage);
|
|
|
|
#endif
|