ultimatepp/bazaar/PixRaster/Lept-Colors.cpp
micio a74e1468c9 PixRaster : updated Leptonica library to version 1.65
git-svn-id: svn://ultimatepp.org/upp/trunk@2598 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2010-08-07 23:38:03 +00:00

18 lines
366 B
C++

#include "PixRaster.h"
NAMESPACE_UPP
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// converts pix to monochrome 1bpp
Pix Pix::ConvertTo1(int threshold)
{
if(IsEmpty())
return Pix();
PIX *dPix = pixConvertTo1(pix, threshold);
if(!dPix)
return Pix();
return Pix(&dPix);
}
END_UPP_NAMESPACE