পৃষ্ঠাসমূহ

Sunday, 2 December 2018

Image Viewer in C++ with Source Code

* C++ Tutorial Demo with Source Code :

 I will show that how to make image viewer using wxDev C++ IDE

How to make image viewer :-



You need one button , one OpenFileDialog, One WxEdit , WxStaticBitmap

Open Button Code Here:-------

wxString filePath;
int w, h, NewW,NewH;
wxImage img;
int PhotoMaxSize = 250;
if (WxOpenFileDialog1->ShowModal()==wxID_OK){
    WxEdit1->SetValue(WxOpenFileDialog1->GetPath());
    filePath = WxEdit1->GetValue();
    img = wxImage(filePath, wxBITMAP_TYPE_ANY);
    w = img.GetWidth();
    h = img.GetHeight();
    if (w>h){
        NewW = PhotoMaxSize;
        NewH = PhotoMaxSize * h/w;
    }
    else{
        NewH = PhotoMaxSize;
        NewW = PhotoMaxSize * w/h;
    }
    
    img = img.Scale(NewW, NewH);
    WxStaticBitmap1->SetBitmap(img);
    WxStaticBitmap1->Refresh();
       
}




FOR MORE HELP : Please Watch My YouTube Video
Link - https://youtu.be/Z9p8MbgmZDg

Simple Media Player in C++

* C++ Tutorial Demo with Source Code :

 I will show that how to read Media File using wxDev C++ IDE

How to load media file :-


You need two button , one OpenFileDialog, One MessageDialog, WxMediaCtrl

Open Button Code Here:-------
                       wxString path;
if (WxOpenFileDialog1->ShowModal()==wxID_OK){
    path = WxOpenFileDialog1->GetPath();
    WxMediaCtrl1->Load(path);
    if (not WxMediaCtrl1->Load(path)){
        int msg = wxMessageBox("Please select media file", "Error", wxOK, WxMessageDialog1);
        if (msg = wxOK){
            Close();
        }
    }
    else{
      WxMediaCtrl1->Play();  
    }
    }


Play Button Code Here:------

 WxMediaCtrl1->Play();

FOR MORE HELP : Please Watch My YouTube Video
Link - https://youtu.be/u8529ccyBvQ