diff --git a/samples/mfc/standard/01_Geometry/src/GeometryView.cpp b/samples/mfc/standard/01_Geometry/src/GeometryView.cpp index 54c70fce7b..fb7383d479 100755 --- a/samples/mfc/standard/01_Geometry/src/GeometryView.cpp +++ b/samples/mfc/standard/01_Geometry/src/GeometryView.cpp @@ -80,20 +80,16 @@ CGeometryDoc* CGeometryView::GetDocument() // non-debug version is inline void CGeometryView::OnFileExportImage() { CFileDialog dlg(FALSE,_T("*.BMP"),NULL,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, - _T("BMP Files (*.BMP)|*.bmp |GIF Files (*.GIF)|*.gif | XWD Files (*.XWD)|*.xwd||"), + _T("BMP Files (*.BMP)|*.bmp |GIF Files (*.GIF)|*.gif | PNG Files (*.PNG)|*.png" + "|JPEG Files (*.JPEG)|*.jpeg | PPM Files (*.PPM)|*.ppm | TIFF Files (*.TIFF)" + "|*.tiff | TGA Files (*.TGA)|*.tga | EXR Files (*.EXR)|*.exr||"), NULL ); if (dlg.DoModal() == IDOK) { SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT)); - CString filename = dlg.GetPathName(); - Handle(Aspect_Window) anAspectWindow = myView->Window(); - Handle(WNT_Window) aWNTWindow = Handle(WNT_Window)::DownCast(anAspectWindow); - CString ext = dlg.GetFileExt(); - if (ext == "bmp") aWNTWindow->SetOutputFormat ( WNT_TOI_BMP ); - if (ext == "gif") aWNTWindow->SetOutputFormat ( WNT_TOI_GIF ); - if (ext == "xwd") aWNTWindow->SetOutputFormat ( WNT_TOI_XWD ); - aWNTWindow->Dump ((Standard_CString)(LPCTSTR)filename); + CString aFileName = dlg.GetPathName(); + myView->Dump(aFileName); SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW)); } } diff --git a/samples/mfc/standard/09_Animation/src/AnimationView3D.cpp b/samples/mfc/standard/09_Animation/src/AnimationView3D.cpp index 94a25a96fe..3390aa9c42 100755 --- a/samples/mfc/standard/09_Animation/src/AnimationView3D.cpp +++ b/samples/mfc/standard/09_Animation/src/AnimationView3D.cpp @@ -241,20 +241,16 @@ CAnimationDoc* CAnimationView3D::GetDocument() // non-debug version is inline void CAnimationView3D::OnFileExportImage() { CFileDialog dlg(FALSE,_T("*.BMP"),NULL,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, - _T("BMP Files (*.BMP)|*.bmp |GIF Files (*.GIF)|*.gif | XWD Files (*.XWD)|*.xwd||"), + _T("BMP Files (*.BMP)|*.bmp |GIF Files (*.GIF)|*.gif | PNG Files (*.PNG)|*.png" + "|JPEG Files (*.JPEG)|*.jpeg | PPM Files (*.PPM)|*.ppm | TIFF Files (*.TIFF)" + "|*.tiff | TGA Files (*.TGA)|*.tga | EXR Files (*.EXR)|*.exr||"), NULL ); if (dlg.DoModal() == IDOK) { SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT)); - CString filename = dlg.GetPathName(); - Handle(Aspect_Window) anAspectWindow = myView->Window(); - Handle(WNT_Window) aWNTWindow = Handle(WNT_Window)::DownCast(anAspectWindow); - CString ext = dlg.GetFileExt(); - if (ext == "bmp") aWNTWindow->SetOutputFormat ( WNT_TOI_BMP ); - if (ext == "gif") aWNTWindow->SetOutputFormat ( WNT_TOI_GIF ); - if (ext == "xwd") aWNTWindow->SetOutputFormat ( WNT_TOI_XWD ); - aWNTWindow->Dump ((Standard_CString)(LPCTSTR)filename); + CString aFileName = dlg.GetPathName(); + myView->Dump(aFileName); SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW)); } } diff --git a/samples/mfc/standard/Common/OCC_2dView.cpp b/samples/mfc/standard/Common/OCC_2dView.cpp index d909f19be8..d47cdf05cf 100755 --- a/samples/mfc/standard/Common/OCC_2dView.cpp +++ b/samples/mfc/standard/Common/OCC_2dView.cpp @@ -127,7 +127,9 @@ void OCC_2dView::OnInitialUpdate() void OCC_2dView::OnFileExportImage() { CFileDialog dlg(FALSE,_T("*.BMP"),NULL,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, - _T("BMP Files (*.BMP)|*.bmp |GIF Files (*.GIF)|*.gif | XWD Files (*.XWD)|*.xwd||"), + _T("BMP Files (*.BMP)|*.bmp |GIF Files (*.GIF)|*.gif | PNG Files (*.PNG)|*.png" + "|JPEG Files (*.JPEG)|*.jpeg | PPM Files (*.PPM)|*.ppm | TIFF Files (*.TIFF)" + "|*.tiff | TGA Files (*.TGA)|*.tga | EXR Files (*.EXR)|*.exr||"), NULL ); if (dlg.DoModal() == IDOK) @@ -136,10 +138,6 @@ if (dlg.DoModal() == IDOK) CString filename = dlg.GetPathName(); Handle(WNT_Window) aWNTWindow= Handle(WNT_Window)::DownCast(myV2dView->Driver()->Window()); - CString ext = dlg.GetFileExt(); - if (ext == "bmp") aWNTWindow->SetOutputFormat ( WNT_TOI_BMP ); - if (ext == "gif") aWNTWindow->SetOutputFormat ( WNT_TOI_GIF ); - if (ext == "xwd") aWNTWindow->SetOutputFormat ( WNT_TOI_XWD ); aWNTWindow->Dump ((Standard_CString)(LPCTSTR)filename); SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW)); } diff --git a/samples/mfc/standard/Common/OCC_3dView.cpp b/samples/mfc/standard/Common/OCC_3dView.cpp index ce3c7ba82b..d51f223ecf 100755 --- a/samples/mfc/standard/Common/OCC_3dView.cpp +++ b/samples/mfc/standard/Common/OCC_3dView.cpp @@ -155,34 +155,31 @@ OCC_3dBaseDoc* OCC_3dView::GetDocument() // non-debug version is inline void OCC_3dView::OnFileExportImage() { LPCTSTR filter; - filter = _T("BMP Files (*.BMP)|*.bmp|GIF Files (*.GIF)|*.gif|XWD Files (*.XWD)|*.xwd|PS Files (*.PS)|*.ps|EPS Files (*.EPS)|*.eps|TEX Files (*.TEX)|*.tex|PDF Files (*.PDF)|*.pdf|SVG Files (*.SVG)|*.svg|PGF Files (*.PGF)|*.pgf||"); + filter = _T("EXR Files (*.EXR)|*.exr|TGA Files (*.TGA)|*.tga|TIFF Files (*.TIFF)|*.tiff|" + "PPM Files (*.PPM)|*.ppm|JPEG Files(*.JPEG)|*.jpeg|PNG Files (*.PNG)|*.png|" + "GIF Files (*.GIF)|*.gif|BMP Files (*.BMP)|*.bmp|PS Files (*.PS)|*.ps|" + "EPS Files (*.EPS)|*.eps|TEX Files (*.TEX)|*.tex|PDF Files (*.PDF)|*.pdf" + "|SVG Files (*.SVG)|*.svg|PGF Files (*.PGF)|*.pgf|EMF Files (*.EMF)|*.emf||"); CFileDialog dlg(FALSE,_T("*.BMP"),NULL,OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, filter, NULL ); if (dlg.DoModal() == IDOK) { - SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT)); - CString filename = dlg.GetPathName(); - char* theFile = new char[filename.GetLength()+1]; - //_tcscpy(theFile,filename); - strcpy_s(theFile,filename.GetLength()+1,filename); + CString aFileName = dlg.GetPathName(); CString ext = dlg.GetFileExt(); - if (ext == "ps" || ext == "emf") + if (!(ext.CompareNoCase("ps")) || !(ext.CompareNoCase("emf")) + || !(ext.CompareNoCase("pdf")) || !(ext.CompareNoCase("eps")) + || !(ext.CompareNoCase("tex")) || !(ext.CompareNoCase("svg")) + || !(ext.CompareNoCase("pgf"))) { Graphic3d_ExportFormat exFormat; - if (ext == "ps") exFormat = Graphic3d_EF_PostScript; + if (!(ext.CompareNoCase("ps"))) exFormat = Graphic3d_EF_PostScript; else exFormat = Graphic3d_EF_EnhPostScript; - myView->View()->Export( theFile, exFormat ); + myView->View()->Export( aFileName, exFormat ); return; } - Handle(Aspect_Window) anAspectWindow = myView->Window(); - Handle(WNT_Window) aWNTWindow = Handle(WNT_Window)::DownCast(anAspectWindow); - if (ext == "bmp") aWNTWindow->SetOutputFormat ( WNT_TOI_BMP ); - if (ext == "gif") aWNTWindow->SetOutputFormat ( WNT_TOI_GIF ); - if (ext == "xwd") aWNTWindow->SetOutputFormat ( WNT_TOI_XWD ); - aWNTWindow->Dump ((Standard_CString)(LPCTSTR)filename); - SetCursor(AfxGetApp()->LoadStandardCursor(IDC_ARROW)); + myView->Dump(aFileName); } } diff --git a/src/Image/Image_AlienPixMap.hxx b/src/Image/Image_AlienPixMap.hxx index 85045b2705..8493e1e99d 100644 --- a/src/Image/Image_AlienPixMap.hxx +++ b/src/Image/Image_AlienPixMap.hxx @@ -27,7 +27,15 @@ class TCollection_AsciiString; struct FIBITMAP; //! Image class that support file reading/writing operations using auxiliary image library. -//! Notice that supported images format could be limited. +//! Supported image formats: +//! - *.bmp - bitmap image, lossless format without compression. +//! - *.ppm - PPM (Portable Pixmap Format), lossless format without compression. +//! - *.png - PNG (Portable Network Graphics) lossless format with compression. +//! - *.jpg, *.jpe, *.jpeg - JPEG/JIFF (Joint Photographic Experts Group) lossy format (compressed with quality losses). YUV color space used (automatically converted from/to RGB). +//! - *.tif, *.tiff - TIFF (Tagged Image File Format). +//! - *.tga - TGA (Truevision Targa Graphic), lossless format. +//! - *.gif - GIF (Graphical Interchange Format), lossy format. Color stored using pallete (up to 256 distinct colors). +//! - *.exr - OpenEXR high dynamic-range format (supports float pixel formats). class Image_AlienPixMap : public Image_PixMap {