You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
exercise_2/3rdparty/colmap-build/FreeImage/Wrapper/FreeImage.NET/cpp/FreeImageIO
Aoi 82a5d8a216
Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong
3 years ago
..
AssemblyInfo.cpp Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago
FreeImageIO.Net.cpp Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago
FreeImageIO.Net.h Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago
FreeImageIO.Net.vcproj Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago
FreeImageIO.sln Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago
ReadMe.txt Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago
Stdafx.cpp Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago
Stdafx.h Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago
app.ico Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago
app.rc Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago
resource.h Merge branch 'hexuesong' of https://bdgit.educoder.net/pbyhqr72x/exercise_2 into hexuesong 3 years ago

ReadMe.txt

========================================================================
FreeImageIO.Net 

Author: Marcos Pernambuco Motta (marcos.pernambuco@gmail.com)
========================================================================

This library allows programs that use FreeImage.Net to save images to or 
to load images from .Net Streams.

The class FreeImageStream implements a FreeImageIO handler and routes
IO calls (read,write,tell and seek) to a wrapped System.IO.Stream.

Example:

using FreeImageAPI;
using FreeImageIODotNet;

uint dib = FreeImageAPI.FreeImage.Allocate(width,height,32,0,0,0);

// ...  Image handling code goes here

System.IO.FileStream stream = new System.IO.FileStream(@"c:\sample.png",System.IO.FileMode.Create);
FreeImageStream imageStream = new FreeImageStream(stream);
imageStream.SaveImage((int)FREE_IMAGE_FORMAT.FIF_PNG,dib,0);
stream.Close();

Compile with VS2003.