28 lines
711 B
TypeScript
28 lines
711 B
TypeScript
import { IMediaData } from "file/media";
|
|
import { XmlComponent } from "file/xml-components";
|
|
|
|
import { GraphicDataAttributes } from "./graphic-data-attribute";
|
|
import { Pic } from "./pic";
|
|
|
|
export class GraphicData extends XmlComponent {
|
|
private readonly pic: Pic;
|
|
|
|
constructor(mediaData: IMediaData, x: number, y: number) {
|
|
super("a:graphicData");
|
|
|
|
this.root.push(
|
|
new GraphicDataAttributes({
|
|
uri: "http://schemas.openxmlformats.org/drawingml/2006/picture",
|
|
}),
|
|
);
|
|
|
|
this.pic = new Pic(mediaData, x, y);
|
|
|
|
this.root.push(this.pic);
|
|
}
|
|
|
|
public setXY(x: number, y: number): void {
|
|
this.pic.setXY(x, y);
|
|
}
|
|
}
|