Home | History | Annotate | Download | only in fpdf_render

Lines Matching refs:m_Width

89     m_Width = m_Height = 0;

168 m_Width = m_pDict->GetInteger(FX_BSTRC("Width"));
170 if (m_Width <= 0 || m_Height <= 0 || m_Width > 0x01ffff || m_Height > 0x01ffff) {
184 if (src_pitch > 0 && (FX_DWORD)m_Width > (unsigned)INT_MAX / src_pitch) {
187 src_pitch *= m_Width;
224 m_Pitch = m_Width;
242 m_Pitch = m_Width;
279 m_Pitch = m_Width;
297 m_Pitch = m_Width;
323 m_Width = m_pDict->GetInteger(FX_BSTRC("Width"));
325 if (m_Width <= 0 || m_Height <= 0 || m_Width > 0x01ffff || m_Height > 0x01ffff) {
339 if (src_pitch > 0 && (FX_DWORD)m_Width > (unsigned)INT_MAX / src_pitch) {
342 src_pitch *= m_Width;
406 ret = pJbig2Moudle->StartDecode(m_pJbig2Context, m_Width, m_Height, m_pStreamAcc->GetData(), m_pStreamAcc->GetSize(),
588 m_pDecoder = FPDFAPI_CreateFaxDecoder(src_data, src_size, m_Width, m_Height, pParams);
590 m_pDecoder = CPDF_ModuleMgr::Get()->GetJpegModule()->CreateDecoder(src_data, src_size, m_Width, m_Height,
596 if (pJpegModule->LoadInfo(src_data, src_size, m_Width, m_Height, comps, bpc, bTransform)) {
599 m_pDecoder = CPDF_ModuleMgr::Get()->GetJpegModule()->CreateDecoder(src_data, src_size, m_Width, m_Height,
604 m_pDecoder = FPDFAPI_CreateFlateDecoder(src_data, src_size, m_Width, m_Height, m_nComponents, m_bpc, pParams);
610 if (!m_pCachedBitmap->Create(m_Width, m_Height, m_bImageMask ? FXDIB_1bppMask : FXDIB_1bppRgb)) {
618 m_pDecoder = CPDF_ModuleMgr::Get()->GetCodecModule()->GetBasicModule()->CreateRunLengthDecoder(src_data, src_size, m_Width, m_Height, m_nComponents, m_bpc);
621 int requested_pitch = (m_Width * m_nComponents * m_bpc + 7) / 8;
642 if ((int)width < m_Width || (int)height < m_Height) {
733 if (!m_pCachedBitmap->Create(m_Width, m_Height, m_bImageMask ? FXDIB_1bppMask : FXDIB_1bppRgb)) {
736 int ret = pJbig2Module->Decode(m_Width, m_Height, m_pStreamAcc->GetData(), m_pStreamAcc->GetSize(),
954 for (int col = 0; col < m_Width; col ++) {
963 for (int column = 0; column < m_Width; column ++) {
975 for (int column = 0; column < m_Width; column ++) {
994 m_pColorSpace->TranslateImageLine(dest_scan, src_scan, m_Width, m_Width, m_Height,
1005 for (int column = 0; column < m_Width; column ++) {
1033 for (int column = 0; column < m_Width; column ++) {
1067 FX_DWORD src_pitch = (m_Width * m_bpc * m_nComponents + 7) / 8;
1104 for (int col = 0; col < m_Width; col ++) {
1123 for (int col = 0; col < m_Width; col ++) {
1136 for (int col = 0; col < m_Width; col ++) {
1157 for (int col = 0; col < m_Width; col ++) {
1175 for (int col = 0; col < m_Width; col ++) {
1195 FX_DWORD src_width = m_Width;
1414 ((CPDF_DIBSource*)this)->m_Width = m_pDecoder->GetWidth();