I'm using SFML with C++ in VS2012. In debug console i have error "failed to load image from memory, no data provided".
(http://storage3.static.itmages.ru/i/15/1211/h_1449858027_8269054_8719abb51b.png)
My main.cpp
#include <iostream>
#include "Test.h"
#include "resource.h"
#include <SFML/System.hpp>
#include <SFML/Window.hpp>
#include <SFML/Graphics.hpp>
#include <SFML/Audio.hpp>
using namespace std;
sf::Image LoadImageFromResource(const std::string& name)
{
HRSRC rsrcData = FindResource(NULL, name.c_str(), RT_RCDATA);
DWORD rsrcDataSize = SizeofResource(NULL, rsrcData);
HGLOBAL grsrcData = LoadResource(NULL, rsrcData);
LPVOID firstByte = LockResource(grsrcData);
sf::Image image;
image.loadFromMemory(firstByte, rsrcDataSize);
return image;
}
int main()
{
sf::Image SpriteSheetWalkRes = LoadImageFromResource("IDB_PNG1");
}
My Resource.rc
#define APSTUDIO_READONLY_SYMBOLS
#include "afxres.h"
#undef APSTUDIO_READONLY_SYMBOLS
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_RUS)
LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
#ifdef APSTUDIO_INVOKED
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif
IDB_PNG1 RCDATA "F:\\(...)\\test_player.png"
#endif
#ifndef APSTUDIO_INVOKED
#endif
My resource.h
#define IDB_PNG1 101
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 102
#define _APS_NEXT_COMMAND_VALUE 40001
#define _APS_NEXT_CONTROL_VALUE 1001
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif
Are you sure that
IDB_PNG1 RCDATA "F:\\(...)\\test_player.png"
is correct?
Wouldn't this just take the literal path string as the raw data stored in the resource?
RCDATA (https://msdn.microsoft.com/en-us/library/windows/desktop/aa381039%28v=vs.85%29.aspx)
i convert my png to .h now, but i cant find examples, and manuals how open it as image. I include .h now, ok, but as i try load it as image it does not work (not surprising). Maybe my question stupid, but how?
There has been talks of this on the forum before but I can't remember where.
Here's a simple example of how to load an image file from a header into an sf::Image:
#include <SFML/Graphics.hpp>
#include "icon_png.hpp"
int main()
{
sf::Image image;
image.loadFromMemory(sfmlIconPngData, 3104); // exact size of array
sf::RenderWindow window(sf::VideoMode(300, 16), "Include Image File As Header", sf::Style::Default);
sf::Texture texture;
texture.loadFromImage(image);
sf::Sprite sprite(texture);
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
window.draw(sprite);
window.display();
}
return EXIT_SUCCESS;
}
The header (icon_png.hpp) is attached.
i convert my png to .h now, but i cant find examples, and manuals how open it as image. I include .h now, ok, but as i try load it as image it does not work (not surprising). Maybe my question stupid, but how?
There has been talks of this on the forum before but I can't remember where.
Here's a simple example of how to load an image file from a header into an sf::Image:
#include <SFML/Graphics.hpp>
#include "icon_png.hpp"
int main()
{
sf::Image image;
image.loadFromMemory(sfmlIconPngData, 3104); // exact size of array
sf::RenderWindow window(sf::VideoMode(300, 16), "Include Image File As Header", sf::Style::Default);
sf::Texture texture;
texture.loadFromImage(image);
sf::Sprite sprite(texture);
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
window.draw(sprite);
window.display();
}
return EXIT_SUCCESS;
}
The header (icon_png.hpp) is attached.
Thx man, without you I would not have solved the problem
You're very welcome.
Which part helped you, if you don't mind me asking?
This part.
image.loadFromMemory(sfmlIconPngData, 3104);
I don't wrote exact size of array, and tried to load as an image using loadFromFile.