mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 09:39:46 -06:00
Use libpng for saving images.
TODO: Needs threading done similiar to OGL backend. Fixes issue 6779.
This commit is contained in:
@ -5,9 +5,7 @@
|
||||
#include "D3DBase.h"
|
||||
#include "D3DTexture.h"
|
||||
|
||||
#include <wincodec.h>
|
||||
#include <wincodecsdk.h>
|
||||
#pragma comment(lib, "WindowsCodecs.lib")
|
||||
#include "png.h"
|
||||
|
||||
namespace DX11
|
||||
{
|
||||
@ -15,125 +13,86 @@ namespace DX11
|
||||
namespace D3D
|
||||
{
|
||||
|
||||
HRESULT TextureToPng(D3D11_MAPPED_SUBRESOURCE &map, LPCWSTR wzFilename, int width, int height, bool saveAlpha)
|
||||
bool TextureToPng(D3D11_MAPPED_SUBRESOURCE &map, const char* filename, int width, int height, bool saveAlpha)
|
||||
{
|
||||
IWICImagingFactory *piFactory = NULL;
|
||||
IWICBitmapEncoder *piEncoder = NULL;
|
||||
IWICBitmapFrameEncode *piBitmapFrame = NULL;
|
||||
IPropertyBag2 *pPropertybag = NULL;
|
||||
|
||||
IWICStream *piStream = NULL;
|
||||
|
||||
HRESULT hr = CoCreateInstance(
|
||||
CLSID_WICImagingFactory,
|
||||
NULL,
|
||||
CLSCTX_INPROC_SERVER,
|
||||
IID_IWICImagingFactory,
|
||||
(LPVOID*)&piFactory);
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
bool success = false;
|
||||
if (map.pData != NULL)
|
||||
{
|
||||
hr = piFactory->CreateStream(&piStream);
|
||||
}
|
||||
FILE *fp = NULL;
|
||||
png_structp png_ptr = NULL;
|
||||
png_infop info_ptr = NULL;
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
hr = piStream->InitializeFromFilename(wzFilename, GENERIC_WRITE);
|
||||
}
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
hr = piFactory->CreateEncoder(GUID_ContainerFormatPng, NULL, &piEncoder);
|
||||
}
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
hr = piEncoder->Initialize(piStream, WICBitmapEncoderNoCache);
|
||||
}
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
hr = piEncoder->CreateNewFrame(&piBitmapFrame, &pPropertybag);
|
||||
}
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
hr = piBitmapFrame->Initialize(pPropertybag);
|
||||
// Open file for writing (binary mode)
|
||||
fp = fopen(filename, "wb");
|
||||
if (fp == NULL) {
|
||||
PanicAlert("Could not open file %s for writing\n", filename);
|
||||
goto finalise;
|
||||
}
|
||||
}
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
hr = piBitmapFrame->SetSize(width, height);
|
||||
}
|
||||
// Initialize write structure
|
||||
png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
|
||||
if (png_ptr == NULL) {
|
||||
PanicAlert("Could not allocate write struct\n");
|
||||
goto finalise;
|
||||
|
||||
}
|
||||
|
||||
WICPixelFormatGUID formatGUID = GUID_WICPixelFormat32bppBGRA;
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
hr = piBitmapFrame->SetPixelFormat(&formatGUID);
|
||||
}
|
||||
// Initialize info structure
|
||||
info_ptr = png_create_info_struct(png_ptr);
|
||||
if (info_ptr == NULL) {
|
||||
PanicAlert("Could not allocate info struct\n");
|
||||
goto finalise;
|
||||
}
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
// We're expecting to write out 32bppBGRA. Fail if the encoder cannot do it.
|
||||
hr = IsEqualGUID(formatGUID, GUID_WICPixelFormat32bppBGRA) ? S_OK : E_FAIL;
|
||||
}
|
||||
// Setup Exception handling
|
||||
if (setjmp(png_jmpbuf(png_ptr))) {
|
||||
PanicAlert("Error during png creation\n");
|
||||
goto finalise;
|
||||
}
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
if (map.pData != NULL)
|
||||
png_init_io(png_ptr, fp);
|
||||
|
||||
// Write header (8 bit colour depth)
|
||||
png_set_IHDR(png_ptr, info_ptr, width, height,
|
||||
8, PNG_COLOR_TYPE_RGB_ALPHA, PNG_INTERLACE_NONE,
|
||||
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
|
||||
|
||||
char title[] = "Dolphin Screenshot";
|
||||
png_text title_text;
|
||||
title_text.compression = PNG_TEXT_COMPRESSION_NONE;
|
||||
title_text.key = "Title";
|
||||
title_text.text = title;
|
||||
png_set_text(png_ptr, info_ptr, &title_text, 1);
|
||||
|
||||
png_write_info(png_ptr, info_ptr);
|
||||
|
||||
// Write image data
|
||||
for (auto y = 0; y < height; ++y)
|
||||
{
|
||||
for (int y = 0; y < height; ++y)
|
||||
u8* row_ptr = (u8*)map.pData + y * map.RowPitch;
|
||||
u8* ptr = row_ptr;
|
||||
for (UINT x = 0; x < map.RowPitch / 4; ++x)
|
||||
{
|
||||
u8* ptr = (u8*)map.pData + y * map.RowPitch;
|
||||
for (unsigned int x = 0; x < map.RowPitch/4; ++x)
|
||||
{
|
||||
u8 r = ptr[0];
|
||||
u8 g = ptr[1];
|
||||
u8 b = ptr[2];
|
||||
ptr[0] = b;
|
||||
ptr[1] = g;
|
||||
ptr[2] = r;
|
||||
if (!saveAlpha)
|
||||
ptr[3] = 0xff;
|
||||
|
||||
|
||||
ptr += 4;
|
||||
}
|
||||
if (!saveAlpha)
|
||||
ptr[3] = 0xff;
|
||||
ptr += 4;
|
||||
}
|
||||
hr = piBitmapFrame->WritePixels(height, map.RowPitch, height * map.RowPitch, (BYTE*)map.pData);
|
||||
}
|
||||
else
|
||||
{
|
||||
hr = E_OUTOFMEMORY;
|
||||
png_write_row(png_ptr, row_ptr);
|
||||
}
|
||||
|
||||
// End write
|
||||
png_write_end(png_ptr, NULL);
|
||||
|
||||
success = true;
|
||||
|
||||
finalise:
|
||||
|
||||
if (fp != NULL) fclose(fp);
|
||||
if (info_ptr != NULL) png_free_data(png_ptr, info_ptr, PNG_FREE_ALL, -1);
|
||||
if (png_ptr != NULL) png_destroy_write_struct(&png_ptr, (png_infopp)NULL);
|
||||
|
||||
}
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
hr = piBitmapFrame->Commit();
|
||||
}
|
||||
|
||||
if (SUCCEEDED(hr))
|
||||
{
|
||||
hr = piEncoder->Commit();
|
||||
}
|
||||
|
||||
if (piFactory)
|
||||
piFactory->Release();
|
||||
|
||||
if (piBitmapFrame)
|
||||
piBitmapFrame->Release();
|
||||
|
||||
if (piEncoder)
|
||||
piEncoder->Release();
|
||||
|
||||
if (piStream)
|
||||
piStream->Release();
|
||||
|
||||
return hr;
|
||||
return false;
|
||||
}
|
||||
|
||||
void ReplaceRGBATexture2D(ID3D11Texture2D* pTexture, const u8* buffer, unsigned int width, unsigned int height, unsigned int pitch, unsigned int level, D3D11_USAGE usage)
|
||||
|
Reference in New Issue
Block a user