Home | History | Annotate | Download | only in fpdf_parser

Lines Matching refs:Columns

200     FX_BOOL Columns = 1728;

207 Columns = pParams->GetInteger(FX_BSTRC("Columns"), 1728);
212 if (Columns <= 0 || Rows < 0 || Columns > USHRT_MAX || Rows > USHRT_MAX) {
217 K, EndOfLine, ByteAlign, BlackIs1, Columns, Rows);
219 static FX_BOOL CheckFlateDecodeParams(int Colors, int BitsPerComponent, int Columns)
221 if (Columns < 0) {
224 int check = Columns;
244 int Colors = 0, BitsPerComponent = 0, Columns = 0;
250 Columns = pParams->GetInteger(FX_BSTRC("Columns"), 1);
251 if (!CheckFlateDecodeParams(Colors, BitsPerComponent, Columns)) {
256 nComps, bpc, predictor, Colors, BitsPerComponent, Columns);
263 int Colors = 0, BitsPerComponent = 0, Columns = 0;
269 Columns = pParams->GetInteger(FX_BSTRC("Columns"), 1);
270 if (!CheckFlateDecodeParams(Colors, BitsPerComponent, Columns)) {
275 bEarlyChange, predictor, Colors, BitsPerComponent, Columns, estimated_size,
518 void FlateEncode(FX_LPCBYTE src_buf, FX_DWORD src_size, int predictor, int Colors, int BitsPerComponent, int Columns,
523 pEncoders->GetFlateModule()->Encode(src_buf, src_size, predictor, Colors, BitsPerComponent, Columns, dest_buf, dest_size);