mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0032463: Visualization - implement Image_AlienPixMap::Load() via emscripten_get_preloaded_image_data()
This commit is contained in:
parent
73dee81133
commit
16222b8cd2
@ -35,11 +35,9 @@ file(GLOB SOURCES
|
|||||||
*.cpp
|
*.cpp
|
||||||
)
|
)
|
||||||
source_group ("Headers" FILES
|
source_group ("Headers" FILES
|
||||||
WasmOcctView.h
|
WasmOcctView.h)
|
||||||
WasmOcctPixMap.h)
|
|
||||||
source_group ("Sources" FILES
|
source_group ("Sources" FILES
|
||||||
WasmOcctView.cpp
|
WasmOcctView.cpp
|
||||||
WasmOcctPixMap.cpp
|
|
||||||
main.cpp)
|
main.cpp)
|
||||||
|
|
||||||
# FreeType
|
# FreeType
|
||||||
|
@ -1,75 +0,0 @@
|
|||||||
// Copyright (c) 2021 OPEN CASCADE SAS
|
|
||||||
//
|
|
||||||
// This file is part of the examples of the Open CASCADE Technology software library.
|
|
||||||
//
|
|
||||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
// of this software and associated documentation files (the "Software"), to deal
|
|
||||||
// in the Software without restriction, including without limitation the rights
|
|
||||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
// copies of the Software, and to permit persons to whom the Software is
|
|
||||||
// furnished to do so, subject to the following conditions:
|
|
||||||
//
|
|
||||||
// The above copyright notice and this permission notice shall be included in all
|
|
||||||
// copies or substantial portions of the Software.
|
|
||||||
//
|
|
||||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
|
||||||
|
|
||||||
#include "WasmOcctPixMap.h"
|
|
||||||
|
|
||||||
#include <Message.hxx>
|
|
||||||
|
|
||||||
#include <emscripten.h>
|
|
||||||
|
|
||||||
// ================================================================
|
|
||||||
// Function : WasmOcctPixMap
|
|
||||||
// Purpose :
|
|
||||||
// ================================================================
|
|
||||||
WasmOcctPixMap::WasmOcctPixMap()
|
|
||||||
: myRawDataPtr (nullptr) {}
|
|
||||||
|
|
||||||
// ================================================================
|
|
||||||
// Function : ~WasmOcctPixMap
|
|
||||||
// Purpose :
|
|
||||||
// ================================================================
|
|
||||||
WasmOcctPixMap::~WasmOcctPixMap()
|
|
||||||
{
|
|
||||||
Clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
// ================================================================
|
|
||||||
// Function : Clear
|
|
||||||
// Purpose :
|
|
||||||
// ================================================================
|
|
||||||
void WasmOcctPixMap::Clear()
|
|
||||||
{
|
|
||||||
if (myRawDataPtr != nullptr) { free (myRawDataPtr); }
|
|
||||||
myRawDataPtr = nullptr;
|
|
||||||
Image_PixMap::Clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
// ================================================================
|
|
||||||
// Function : Init
|
|
||||||
// Purpose :
|
|
||||||
// ================================================================
|
|
||||||
bool WasmOcctPixMap::Init (const char* theFilePath)
|
|
||||||
{
|
|
||||||
Clear();
|
|
||||||
int aSizeX = 0, aSizeY = 0;
|
|
||||||
char* anImgData = emscripten_get_preloaded_image_data (theFilePath, &aSizeX, &aSizeY);
|
|
||||||
if (anImgData == nullptr)
|
|
||||||
{
|
|
||||||
Message::DefaultMessenger()->Send (TCollection_AsciiString("Error: invalid image ") + theFilePath, Message_Fail);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
Message::DefaultMessenger()->Send (TCollection_AsciiString("Loaded image ") + theFilePath + "@" + aSizeX + "x" + aSizeY, Message_Info);
|
|
||||||
InitWrapper (Image_Format_RGBA, (Standard_Byte* )anImgData, aSizeX, aSizeY);
|
|
||||||
SetTopDown (true);
|
|
||||||
myRawDataPtr = anImgData;
|
|
||||||
return true;
|
|
||||||
}
|
|
@ -1,47 +0,0 @@
|
|||||||
// Copyright (c) 2021 OPEN CASCADE SAS
|
|
||||||
//
|
|
||||||
// This file is part of the examples of the Open CASCADE Technology software library.
|
|
||||||
//
|
|
||||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
// of this software and associated documentation files (the "Software"), to deal
|
|
||||||
// in the Software without restriction, including without limitation the rights
|
|
||||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
// copies of the Software, and to permit persons to whom the Software is
|
|
||||||
// furnished to do so, subject to the following conditions:
|
|
||||||
//
|
|
||||||
// The above copyright notice and this permission notice shall be included in all
|
|
||||||
// copies or substantial portions of the Software.
|
|
||||||
//
|
|
||||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
|
||||||
|
|
||||||
#ifndef _WasmOcctPixMap_HeaderFile
|
|
||||||
#define _WasmOcctPixMap_HeaderFile
|
|
||||||
|
|
||||||
#include <Image_PixMap.hxx>
|
|
||||||
|
|
||||||
//! Image pixmap loading image using Emscripten.
|
|
||||||
class WasmOcctPixMap : public Image_PixMap
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
//! Empty constructor.
|
|
||||||
WasmOcctPixMap();
|
|
||||||
|
|
||||||
//! Destructor.
|
|
||||||
virtual ~WasmOcctPixMap();
|
|
||||||
|
|
||||||
//! Load RGBA pixmap using emscripten_get_preloaded_image_data() from the given path.
|
|
||||||
bool Init (const char* theFilePath);
|
|
||||||
|
|
||||||
//! Release memory.
|
|
||||||
virtual void Clear() override;
|
|
||||||
|
|
||||||
private:
|
|
||||||
char* myRawDataPtr;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // _WasmOcctPixMap_HeaderFile
|
|
@ -21,12 +21,11 @@
|
|||||||
|
|
||||||
#include "WasmOcctView.h"
|
#include "WasmOcctView.h"
|
||||||
|
|
||||||
#include "WasmOcctPixMap.h"
|
|
||||||
|
|
||||||
#include <AIS_Shape.hxx>
|
#include <AIS_Shape.hxx>
|
||||||
#include <AIS_ViewCube.hxx>
|
#include <AIS_ViewCube.hxx>
|
||||||
#include <Aspect_Handle.hxx>
|
#include <Aspect_Handle.hxx>
|
||||||
#include <Aspect_DisplayConnection.hxx>
|
#include <Aspect_DisplayConnection.hxx>
|
||||||
|
#include <Image_AlienPixMap.hxx>
|
||||||
#include <Message.hxx>
|
#include <Message.hxx>
|
||||||
#include <Message_Messenger.hxx>
|
#include <Message_Messenger.hxx>
|
||||||
#include <Graphic3d_CubeMapPacked.hxx>
|
#include <Graphic3d_CubeMapPacked.hxx>
|
||||||
@ -82,8 +81,8 @@ namespace
|
|||||||
static void onImageRead (const char* theFilePath)
|
static void onImageRead (const char* theFilePath)
|
||||||
{
|
{
|
||||||
Handle(Graphic3d_CubeMapPacked) aCubemap;
|
Handle(Graphic3d_CubeMapPacked) aCubemap;
|
||||||
Handle(WasmOcctPixMap) anImage = new WasmOcctPixMap();
|
Handle(Image_AlienPixMap) anImage = new Image_AlienPixMap();
|
||||||
if (anImage->Init (theFilePath))
|
if (anImage->Load (theFilePath))
|
||||||
{
|
{
|
||||||
aCubemap = new Graphic3d_CubeMapPacked (anImage);
|
aCubemap = new Graphic3d_CubeMapPacked (anImage);
|
||||||
}
|
}
|
||||||
|
@ -35,6 +35,8 @@
|
|||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#pragma comment(lib, "Ole32.lib")
|
#pragma comment(lib, "Ole32.lib")
|
||||||
#endif
|
#endif
|
||||||
|
#elif defined(__EMSCRIPTEN__)
|
||||||
|
#include <emscripten/emscripten.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <Image_AlienPixMap.hxx>
|
#include <Image_AlienPixMap.hxx>
|
||||||
@ -494,6 +496,12 @@ void Image_AlienPixMap::Clear()
|
|||||||
FreeImage_Unload (myLibImage);
|
FreeImage_Unload (myLibImage);
|
||||||
myLibImage = NULL;
|
myLibImage = NULL;
|
||||||
}
|
}
|
||||||
|
#elif defined(__EMSCRIPTEN__)
|
||||||
|
if (myLibImage != NULL)
|
||||||
|
{
|
||||||
|
free ((void* )myLibImage);
|
||||||
|
myLibImage = NULL;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -798,6 +806,39 @@ bool Image_AlienPixMap::Load (std::istream& theStream,
|
|||||||
|
|
||||||
return Load (&aBuff.ChangeFirst(), aBuff.Size(), theFilePath);
|
return Load (&aBuff.ChangeFirst(), aBuff.Size(), theFilePath);
|
||||||
}
|
}
|
||||||
|
#elif defined(__EMSCRIPTEN__)
|
||||||
|
bool Image_AlienPixMap::Load (std::istream& ,
|
||||||
|
const TCollection_AsciiString& )
|
||||||
|
{
|
||||||
|
Clear();
|
||||||
|
Message::SendFail ("Error: no image library available for decoding stream");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
bool Image_AlienPixMap::Load (const Standard_Byte* theData,
|
||||||
|
Standard_Size theLength,
|
||||||
|
const TCollection_AsciiString& theImagePath)
|
||||||
|
{
|
||||||
|
Clear();
|
||||||
|
if (theData != NULL)
|
||||||
|
{
|
||||||
|
(void )theLength;
|
||||||
|
Message::SendFail ("Error: no image library available for decoding in-memory buffer");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
int aSizeX = 0, aSizeY = 0;
|
||||||
|
char* anImgData = emscripten_get_preloaded_image_data (theImagePath.ToCString(), &aSizeX, &aSizeY);
|
||||||
|
if (anImgData == NULL)
|
||||||
|
{
|
||||||
|
Message::SendFail() << "Error: image '" << theImagePath << "' is not preloaded";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Image_PixMap::InitWrapper (Image_Format_RGBA, (Standard_Byte* )anImgData, aSizeX, aSizeY);
|
||||||
|
SetTopDown (true);
|
||||||
|
myLibImage = (FIBITMAP* )anImgData;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
bool Image_AlienPixMap::Load (std::istream& ,
|
bool Image_AlienPixMap::Load (std::istream& ,
|
||||||
const TCollection_AsciiString& )
|
const TCollection_AsciiString& )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user