devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 905 B
JavaScript
import { RtfFloatingObjectPictureExportStrategy } from './picture/rtf-floating-object-picture-export-strategy';
import { RtfAnchoredRunExporter } from './rtf-anchored-run-exporter';
export class RtfAnchoredPictureRunExporter extends RtfAnchoredRunExporter {
getWidth() {
return this.size.actualSize.width;
}
getHeight() {
return this.size.actualSize.height;
}
constructor(rtfBuilder, pictureRun, imageCache) {
super(rtfBuilder, pictureRun.anchorInfo, pictureRun.shape, pictureRun.size, pictureRun.info.containerProperties);
this.pictureRun = pictureRun;
this.imageCache = imageCache;
}
exportContent() {
const exportStrategy = new RtfFloatingObjectPictureExportStrategy();
exportStrategy.export(this.rtfBuilder, this.pictureRun.info, this.imageCache, this.pictureRun.info.containerProperties);
}
}