Posts

Showing posts from December, 2018

Image Viewer in C++ with Source Code

Image
* C++ Tutorial Demo with Source Code :  I will show that how to make image viewer using wxDev C++ IDE How to make image viewer :- (Screen Shot) 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();         }

Simple Media Player in C++

Image
* C++ Tutorial Demo with Source Code :  I will show that how to read Media File using wxDev C++ IDE How to load media file :- (Screen Shot) 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();