// static int bcount=0; void wrapbmp_add(WRAPBMP *wrapbmp,BMPREGION *region,K2PDFOPT_SETTINGS *k2settings, MASTERINFO *masterinfo,int colgap,int just_flags) { WILLUSBITMAP *tmp,_tmp; int i,rh,th,bw,new_base,h2,bpp,width0; // static char filename[256]; #if (WILLUSDEBUGX & 205) k2printf("@wrapbmp->add %d x %d (w=%d).\n",region->c2-region->c1+1,region->r2-region->r1+1,wrapbmp->bmp.width); printf(" line_spacing=%d\n",region->bbox.rowheight); #endif /* Figure out if what we're adding ends in a hyphen */ bmpregion_hyphen_detect(region,k2settings->hyphen_detect,k2settings->src_left_to_right); if (wrapbmp_ends_in_hyphen(wrapbmp)) colgap=0; wrapbmp_hyphen_erase(wrapbmp,k2settings); wrapbmp->just_flushed_internal=0; // Reset "just flushed" flag if (wrapbmp->bmp.width==0) wrapbmp->textrow=region->bbox; else { if (region->bbox.rowheight > wrapbmp->textrow.rowheight) wrapbmp->textrow.rowheight = region->bbox.rowheight; if (region->bbox.gap > wrapbmp->textrow.gap) wrapbmp->textrow.gap = region->bbox.gap; if (region->bbox.gapblank > wrapbmp->textrow.gapblank) wrapbmp->textrow.gapblank = region->bbox.gapblank; } wrapbmp->bgcolor=region->bgcolor; wrapbmp->just=just_flags; if (wrapbmp->mandatory_region_gap<0) { wrapbmp->mandatory_region_gap=masterinfo->mandatory_region_gap; wrapbmp->page_region_gap_in=masterinfo->page_region_gap_in; masterinfo->mandatory_region_gap=0; masterinfo->page_region_gap_in=-1.; #if (WILLUSDEBUGX & 0x200) aprintf(ANSI_RED "mi->mandatory_region_gap change to %d by wrap_add." ANSI_NORMAL "\n",masterinfo->mandatory_region_gap); #endif } #if (WILLUSDEBUGX & 4) k2printf(" c1=%d, c2=%d, r1=%d, r2=%d\n",region->c1,region->c2,region->r1,region->r2); k2printf(" colgap=%d, line_spacing=%d, rowbase=%d, row gap=%d\n",colgap,region->bbox.rowheight,region->bbox.rowbase,region->bbox.gap); #endif bpp=k2settings->dst_color?3:1; rh=region->bbox.rowbase-region->r1+1; if (rh > wrapbmp->rhmax) wrapbmp->rhmax=rh; th = rh + (region->r2-region->bbox.rowbase); if (th > wrapbmp->thmax) wrapbmp->thmax=th; #if (WILLUSDEBUGX & 4) { static int bcount=0; char filename[256]; sprintf(filename,"out%05d.png",bcount++); bmpregion_write(region,filename); } #endif if (wrapbmp->bmp.width==0) { /* Put appropriate gap in */ /* if (k2settings->last_rowbase_internal>=0 && rh < wrapbmp->textrow.rowheight-k2settings->last_rowbase_internal) { rh = wrapbmp->textrow.rowheight - k2settings->last_rowbase_internal; if (rh<2) rh=2; th = rh + (region->r2-region->bbox.rowbase); wrapbmp->height_extended=0; } else wrapbmp->height_extended=(k2settings->last_rowbase_internal>=0); */ wrapbmp->base = rh-1; wrapbmp->bmp.height = th; #if (WILLUSDEBUGX & 4) k2printf(" bmpheight set to %d (line spacing=%d)\n",wrapbmp->bmp.height,wrapbmp->textrow.rowheight); #endif wrapbmp->bmp.width=region->c2-region->c1+1; bmp_alloc(&wrapbmp->bmp); bw=bmp_bytewidth(&wrapbmp->bmp); memset(bmp_rowptr_from_top(&wrapbmp->bmp,0),255,bw*wrapbmp->bmp.height); for (i=region->r1;i<=region->r2;i++) { unsigned char *d,*s; d=bmp_rowptr_from_top(&wrapbmp->bmp,wrapbmp->base+(i-region->bbox.rowbase)); s=bmp_rowptr_from_top(k2settings->dst_color?region->bmp:region->bmp8,i)+bpp*region->c1; memcpy(d,s,bw); } #ifdef WILLUSDEBUG if (wrapbmp->bmp.height<=wrapbmp->base) { k2printf("1. SCREEECH!\n"); k2printf("wrapbmp = %d x %d, base=%d\n",wrapbmp->bmp.width,wrapbmp->bmp.height,wrapbmp->base); exit(10); } #endif /* Copy hyphen info from added region */ wrapbmp->hyphen = region->bbox.hyphen; if (wrapbmp_ends_in_hyphen(wrapbmp)) { wrapbmp->hyphen.r1 += (wrapbmp->base-region->bbox.rowbase); wrapbmp->hyphen.r2 += (wrapbmp->base-region->bbox.rowbase); wrapbmp->hyphen.ch -= region->c1; wrapbmp->hyphen.c2 -= region->c1; } /* Map to source page */ { WRECTMAP _wrmap,*wrmap; wrmap=&_wrmap; wrmap->srcpageno = region->pageno; wrmap->srcwidth = region->bmp8->width; wrmap->srcheight = region->bmp8->height; wrmap->srcdpiw = wrmap->srcdpih = region->dpi; wrmap->srcrot = region->rotdeg; wrmap->coords[0].x = region->c1; wrmap->coords[0].y = region->r1; wrmap->coords[1].x = 0; wrmap->coords[1].y = wrapbmp->base+(region->r1-region->bbox.rowbase); wrmap->coords[2].x = region->c2-region->c1+1; wrmap->coords[2].y = region->r2-region->r1+1; #if (WILLUSDEBUGX & 0x400) printf("@wrapbmp: (x0,y0) = (%5.1f,%5.1f)\n",region->c1*72./region->dpi,region->r1*72./region->dpi); printf(" %5.1f x %5.1f\n",(region->c2-region->c1+1)*72./region->dpi,(region->r2-region->r1+1)*72./region->dpi); printf(" New bitmap = %d x %d\n",wrapbmp->bmp.width,wrapbmp->bmp.height); #endif wrectmaps_add_wrectmap(&wrapbmp->wrectmaps,wrmap); } return; } width0=wrapbmp->bmp.width; /* Starting wrapbmp width */ tmp=&_tmp; bmp_init(tmp); bmp_copy(tmp,&wrapbmp->bmp); tmp->width += colgap+region->c2-region->c1+1; if (rh > wrapbmp->base) { /* wrapbmp->height_extended=1; */ new_base = rh-1; } else new_base = wrapbmp->base; if (region->r2-region->bbox.rowbase > wrapbmp->bmp.height-1-wrapbmp->base) h2=region->r2-region->bbox.rowbase; else h2=wrapbmp->bmp.height-1-wrapbmp->base; tmp->height = new_base + h2 + 1; bmp_alloc(tmp); bw=bmp_bytewidth(tmp); memset(bmp_rowptr_from_top(tmp,0),255,bw*tmp->height); bw=bmp_bytewidth(&wrapbmp->bmp); #if (WILLUSDEBUGX & 4) k2printf("3. wbh=%d x %d, tmp=%d x %d x %d, new_base=%d, wbbase=%d\n",wrapbmp->bmp.width,wrapbmp->bmp.height,tmp->width,tmp->height,tmp->bpp,new_base,wrapbmp->base); #endif /* Adjust previous mappings to source pages since WRAPBMP rectangle has been re-sized */ if (new_base!=wrapbmp->base) for (i=0;i<wrapbmp->wrectmaps.n;i++) { wrapbmp->wrectmaps.wrectmap[i].coords[1].y += (new_base-wrapbmp->base); if (k2settings->src_left_to_right==0) wrapbmp->wrectmaps.wrectmap[i].coords[1].x += tmp->width-1-wrapbmp->bmp.width; } for (i=0;i<wrapbmp->bmp.height;i++) { unsigned char *d,*s; d=bmp_rowptr_from_top(tmp,i+new_base-wrapbmp->base) + (k2settings->src_left_to_right ? 0 : tmp->width-1-wrapbmp->bmp.width)*bpp; s=bmp_rowptr_from_top(&wrapbmp->bmp,i); memcpy(d,s,bw); } bw=bpp*(region->c2-region->c1+1); if (region->r1+new_base-region->bbox.rowbase<0 || region->r2+new_base-region->bbox.rowbase>tmp->height-1) { k2printf(ANSI_YELLOW "INTERNAL ERROR--TMP NOT DIMENSIONED PROPERLY.\n"); k2printf("(%d-%d), tmp->height=%d\n" ANSI_NORMAL, region->r1+new_base-region->bbox.rowbase, region->r2+new_base-region->bbox.rowbase,tmp->height); exit(10); } for (i=region->r1;i<=region->r2;i++) { unsigned char *d,*s; d=bmp_rowptr_from_top(tmp,i+new_base-region->bbox.rowbase) + (k2settings->src_left_to_right ? wrapbmp->bmp.width+colgap : 0)*bpp; s=bmp_rowptr_from_top(k2settings->dst_color?region->bmp:region->bmp8,i)+bpp*region->c1; memcpy(d,s,bw); } { WRECTMAP _wrmap,*wrmap; wrmap=&_wrmap; wrmap->srcpageno = region->pageno; wrmap->srcwidth = region->bmp8->width; wrmap->srcheight = region->bmp8->height; wrmap->srcdpiw = wrmap->srcdpih = region->dpi; wrmap->srcrot = region->rotdeg; wrmap->coords[0].x = region->c1; wrmap->coords[0].y = region->r1; wrmap->coords[1].x = k2settings->src_left_to_right ? wrapbmp->bmp.width+colgap : 0; wrmap->coords[1].y = region->r1+new_base-region->bbox.rowbase; wrmap->coords[2].x = region->c2-region->c1+1; wrmap->coords[2].y = region->r2-region->r1+1; #if (WILLUSDEBUGX & 0x400) printf("@wrapbmp: (x0,y0) = (%5.1f,%5.1f)\n",region->c1*72./region->dpi,region->r1*72./region->dpi); printf(" org bmp = %d x %d\n",wrapbmp->bmp.width,wrapbmp->bmp.height); printf(" new_base=%d, r_base=%d\n",new_base,region->bbox.rowbase); printf(" (x1,y1) = (%g,%g)\n",wrmap->coords[1].x,wrmap->coords[1].y); printf(" %5.1f x %5.1f\n",(region->c2-region->c1+1)*72./region->dpi,(region->r2-region->r1+1)*72./region->dpi); printf(" New bitmap = %d x %d\n",tmp->width,tmp->height); #endif wrectmaps_add_wrectmap(&wrapbmp->wrectmaps,wrmap); } bmp_copy(&wrapbmp->bmp,tmp); #if (WILLUSDEBUGX & 4) { static int rcount=0; char filename[256]; sprintf(filename,"result%03d.png",rcount++); bmp_write(tmp,filename,stdout,100); } #endif bmp_free(tmp); /* Copy region's hyphen info */ wrapbmp->hyphen = region->bbox.hyphen; if (wrapbmp_ends_in_hyphen(wrapbmp)) { wrapbmp->hyphen.r1 += (new_base-region->bbox.rowbase); wrapbmp->hyphen.r2 += (new_base-region->bbox.rowbase); if (k2settings->src_left_to_right) { wrapbmp->hyphen.ch += width0+colgap-region->c1; wrapbmp->hyphen.c2 += width0+colgap-region->c1; } else { wrapbmp->hyphen.ch -= region->c1; wrapbmp->hyphen.c2 -= region->c1; } } wrapbmp->base=new_base; /* Doesn't seem to work? v2.00 */ /* wrapbmp->textrow.gap = (wrapbmp->bmp.height-1)-new_base; wrapbmp->textrow.gapblank = 0; */ #ifdef WILLUSDEBUG if (wrapbmp->bmp.height<=wrapbmp->base) { k2printf("2. SCREEECH!\n"); k2printf("wrapbmp = %d x %d, base=%d\n",wrapbmp->bmp.width,wrapbmp->bmp.height,wrapbmp->base); exit(10); } #endif }
// static int bcount=0; void wrapbmp_add(WRAPBMP *wrapbmp,BMPREGION *region,K2PDFOPT_SETTINGS *k2settings, int gap,int line_spacing,int rbase,int gio,int just_flags) { WILLUSBITMAP *tmp,_tmp; int i,rh,th,bw,new_base,h2,bpp,width0; // static char filename[256]; #ifdef WILLUSDEBUG printf("@wrapbmp->add %d x %d (w=%d).\n",region->c2-region->c1+1,region->r2-region->r1+1,wrapbmp->bmp.width); #endif /* Figure out if what we're adding ends in a hyphen */ bmpregion_hyphen_detect(region,k2settings->hyphen_detect,k2settings->src_left_to_right); if (wrapbmp_ends_in_hyphen(wrapbmp)) gap=0; wrapbmp_hyphen_erase(wrapbmp,k2settings); wrapbmp->just_flushed_internal=0; // Reset "just flushed" flag wrapbmp->beginning_gap_internal = -1; // Reset top-of-page or top-of-column gap wrapbmp->last_h5050_internal = -1; // Reset last row font size if (line_spacing > wrapbmp->line_spacing) wrapbmp->line_spacing = line_spacing; if (gio > wrapbmp->gap) wrapbmp->gap = gio; wrapbmp->bgcolor=region->bgcolor; wrapbmp->just=just_flags; /* printf(" c1=%d, c2=%d, r1=%d, r2=%d\n",region->c1,region->c2,region->r1,region->r2); printf(" gap=%d, line_spacing=%d, rbase=%d, gio=%d\n",gap,line_spacing,rbase,gio); */ bpp=k2settings->dst_color?3:1; rh=rbase-region->r1+1; if (rh > wrapbmp->rhmax) wrapbmp->rhmax=rh; th = rh + (region->r2-rbase); if (th > wrapbmp->thmax) wrapbmp->thmax=th; /* { WILLUSBITMAP *bmp,_bmp; bmp=&_bmp; bmp_init(bmp); bmp->height=region->r2-region->r1+1; bmp->width=region->c2-region->c1+1; bmp->bpp=bpp*8; if (bpp==1) for (i=0;i<256;i++) bmp->red[i]=bmp->blue[i]=bmp->green[i]=i; bmp_alloc(&wrapbmp->bmp); bw=bmp_bytewidth(&wrapbmp->bmp); memset(bmp_rowptr_from_top(bmp,0),255,bw*bmp->height); for (i=region->r1;i<=region->r2;i++) { unsigned char *d,*s; d=bmp_rowptr_from_top(bmp,i-region->r1); s=bmp_rowptr_from_top(k2settings->dst_color?region->bmp:region->bmp8,i)+bpp*region->c1; if (i==rbase) memset(d,0,bw); else memcpy(d,s,bw); } sprintf(filename,"out%05d.png",bcount++); bmp_write(bmp,filename,stdout,100); bmp_free(bmp); } */ if (wrapbmp->bmp.width==0) { /* Put appropriate gap in */ if (k2settings->last_rowbase_internal>=0 && rh < wrapbmp->line_spacing-k2settings->last_rowbase_internal) { rh = wrapbmp->line_spacing - k2settings->last_rowbase_internal; if (rh<2) rh=2; th = rh + (region->r2-rbase); wrapbmp->height_extended=0; } else wrapbmp->height_extended=(k2settings->last_rowbase_internal>=0); wrapbmp->base = rh-1; wrapbmp->bmp.height = th; #ifdef WILLUSDEBUG printf("@wrapbmp->add: bmpheight set to %d (wls=%d, lrbi=%d)\n",wrapbmp->bmp.height,wrapbmp->line_spacing,k2settings->last_rowbase_internal); #endif wrapbmp->bmp.width=region->c2-region->c1+1; bmp_alloc(&wrapbmp->bmp); bw=bmp_bytewidth(&wrapbmp->bmp); memset(bmp_rowptr_from_top(&wrapbmp->bmp,0),255,bw*wrapbmp->bmp.height); for (i=region->r1;i<=region->r2;i++) { unsigned char *d,*s; d=bmp_rowptr_from_top(&wrapbmp->bmp,wrapbmp->base+(i-rbase)); s=bmp_rowptr_from_top(k2settings->dst_color?region->bmp:region->bmp8,i)+bpp*region->c1; memcpy(d,s,bw); } #ifdef WILLUSDEBUG if (wrapbmp->bmp.height<=wrapbmp->base) { printf("1. SCREEECH!\n"); printf("wrapbmp = %d x %d, base=%d\n",wrapbmp->bmp.width,wrapbmp->bmp.height,wrapbmp->base); exit(10); } #endif /* Copy hyphen info from added region */ wrapbmp->hyphen = region->hyphen; if (wrapbmp_ends_in_hyphen(wrapbmp)) { wrapbmp->hyphen.r1 += (wrapbmp->base-rbase); wrapbmp->hyphen.r2 += (wrapbmp->base-rbase); wrapbmp->hyphen.ch -= region->c1; wrapbmp->hyphen.c2 -= region->c1; } return; } width0=wrapbmp->bmp.width; /* Starting wrapbmp width */ tmp=&_tmp; bmp_init(tmp); bmp_copy(tmp,&wrapbmp->bmp); tmp->width += gap+region->c2-region->c1+1; if (rh > wrapbmp->base) { wrapbmp->height_extended=1; new_base = rh-1; } else new_base = wrapbmp->base; if (region->r2-rbase > wrapbmp->bmp.height-1-wrapbmp->base) h2=region->r2-rbase; else h2=wrapbmp->bmp.height-1-wrapbmp->base; tmp->height = new_base + h2 + 1; bmp_alloc(tmp); bw=bmp_bytewidth(tmp); memset(bmp_rowptr_from_top(tmp,0),255,bw*tmp->height); bw=bmp_bytewidth(&wrapbmp->bmp); /* printf("3. wbh=%d x %d, tmp=%d x %d x %d, new_base=%d, wbbase=%d\n",wrapbmp->bmp.width,wrapbmp->bmp.height,tmp->width,tmp->height,tmp->bpp,new_base,wrapbmp->base); */ for (i=0;i<wrapbmp->bmp.height;i++) { unsigned char *d,*s; d=bmp_rowptr_from_top(tmp,i+new_base-wrapbmp->base) + (k2settings->src_left_to_right ? 0 : tmp->width-1-wrapbmp->bmp.width)*bpp; s=bmp_rowptr_from_top(&wrapbmp->bmp,i); memcpy(d,s,bw); } bw=bpp*(region->c2-region->c1+1); if (region->r1+new_base-rbase<0 || region->r2+new_base-rbase>tmp->height-1) { aprintf(ANSI_YELLOW "INTERNAL ERROR--TMP NOT DIMENSIONED PROPERLY.\n"); aprintf("(%d-%d), tmp->height=%d\n" ANSI_NORMAL, region->r1+new_base-rbase, region->r2+new_base-rbase,tmp->height); exit(10); } for (i=region->r1;i<=region->r2;i++) { unsigned char *d,*s; d=bmp_rowptr_from_top(tmp,i+new_base-rbase) + (k2settings->src_left_to_right ? wrapbmp->bmp.width+gap : 0)*bpp; s=bmp_rowptr_from_top(k2settings->dst_color?region->bmp:region->bmp8,i)+bpp*region->c1; memcpy(d,s,bw); } bmp_copy(&wrapbmp->bmp,tmp); bmp_free(tmp); /* Copy region's hyphen info */ wrapbmp->hyphen = region->hyphen; if (wrapbmp_ends_in_hyphen(wrapbmp)) { wrapbmp->hyphen.r1 += (new_base-rbase); wrapbmp->hyphen.r2 += (new_base-rbase); if (k2settings->src_left_to_right) { wrapbmp->hyphen.ch += width0+gap-region->c1; wrapbmp->hyphen.c2 += width0+gap-region->c1; } else { wrapbmp->hyphen.ch -= region->c1; wrapbmp->hyphen.c2 -= region->c1; } } wrapbmp->base=new_base; #ifdef WILLUSDEBUG if (wrapbmp->bmp.height<=wrapbmp->base) { printf("2. SCREEECH!\n"); printf("wrapbmp = %d x %d, base=%d\n",wrapbmp->bmp.width,wrapbmp->bmp.height,wrapbmp->base); exit(10); } #endif }