c++ builder XE4, 10.2 Tokyo > TImage > 画像のファイル拡張子(.png)が不明です
動作環境
C++ Builder XE4
RAD Studio 10.2 Tokyo Update 2 (追記: 2017/12/28)
現象
TImageにpngファイルを読込もうとしていた。
Unit1.cpp
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
Image1->Picture->LoadFromFile(L"site-logo.png");
}
//---------------------------------------------------------------------------
実行すると
対策
cppファイルに以下のincludeを入れる。
#include <pngimage.hpp>
参考 http://www.gesource.jp/programming/bcb/33.html
Unit1.cpp
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include <pngimage.hpp>
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
Image1->Picture->LoadFromFile(L"site-logo.png");
}
//---------------------------------------------------------------------------
以下のようにTImage上にpngファイルを読めるようになった。
Jpegの場合
以下を追加する。
#include <Jpeg.hpp>
Author And Source
この問題について(c++ builder XE4, 10.2 Tokyo > TImage > 画像のファイル拡張子(.png)が不明です), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/9edf309c5f58cec126ff著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .