mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
18 lines
366 B
C++
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
|