SImageEdit.ts 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. /*
  2. * *********************************************************************************************************************
  3. *
  4. * !!
  5. * .F88X
  6. * X8888Y
  7. * .}888888N;
  8. * i888888N; .:! .I$WI:
  9. * R888888I .'N88~ i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
  10. * .R888888I .;N8888~ .X8' "8I.!,/8" !%NY8`"8I8~~8>,88I
  11. * +888888N; .8888888Y "&&8Y.}8,
  12. * ./888888N; .R888888Y .'}~ .>}'.`+> i}! "i' +/' .'i~ !11,.:">, .~]! .i}i
  13. * ~888888%: .I888888l .]88~`1/iY88Ii+1'.R$8$8]"888888888> Y8$ W8E X8E W8888'188Il}Y88$*
  14. * 18888888 E8888881 .]W%8$`R8X'&8%++N8i,8N%N8+l8%` .}8N:.R$RE%N88N%N$K$R 188,FE$8%~Y88I
  15. * .E888888I .i8888888' .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
  16. * 8888888I .,N888888~ ~88i"8W,!N8*.I88.}888%F,i$88"F88" 888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
  17. * i888888N' I888Y ]88;/EX*IFKFK88X K8R .l8W 88Y ~88}'88E&%8W.X8N``]88!.$8K .:W8I
  18. * .i888888N; I8Y .&8$ .X88! i881.:%888>I88 ;88] +88+.';;;;:.Y88X 18N.,88l .+88/
  19. * .:R888888I
  20. * .&888888I Copyright (c) 2016-2020. 博锐尚格科技股份有限公司
  21. * ~8888'
  22. * .!88~ All rights reserved.
  23. *
  24. * *********************************************************************************************************************
  25. */
  26. import { SPainter, SRect, SSize, SColor, SPoint } from "@persagy-web/draw";
  27. import { SImageShowType, STextOrigin } from "@persagy-web/graph";
  28. import { SGraphItem, SAnchorItem,SLineStyle } from "@persagy-web/graph";
  29. import { SItemStatus } from "@persagy-web/big";
  30. import { SGraphEdit } from "./../"
  31. /**
  32. * 图片编辑类
  33. *
  34. * @author 韩耀龙(han_yao_long@163.com)
  35. */
  36. export class SImageEdit extends SGraphEdit {
  37. //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  38. //属性
  39. /** 图片dom */
  40. img: CanvasImageSource | undefined;
  41. /** 展示模式 */
  42. private _showType: SImageShowType = SImageShowType.Full;
  43. get showType(): SImageShowType {
  44. return this._showType;
  45. }
  46. set showType(v: SImageShowType) {
  47. this._showType = v;
  48. this.computeImgSize();
  49. this.update();
  50. }
  51. /** 边框色 */
  52. private _strokeColor: SColor = SColor.Transparent;
  53. get strokeColor(): SColor {
  54. return this._strokeColor;
  55. }
  56. set strokeColor(v: SColor) {
  57. this._strokeColor = v;
  58. this.update();
  59. }
  60. /** 边框宽度 */
  61. private _lineWidth: number = 1;
  62. get lineWidth(): number {
  63. return this._lineWidth;
  64. }
  65. set lineWidth(v: number) {
  66. this._lineWidth = v;
  67. this.update();
  68. }
  69. /** 原点位置 */
  70. private _originPosition: STextOrigin = STextOrigin.LeftTop;
  71. get originPosition(): STextOrigin {
  72. return this._originPosition;
  73. }
  74. set originPosition(v: STextOrigin) {
  75. this._originPosition = v;
  76. this.update();
  77. }
  78. /** 线条样式 */
  79. private _lineStyle: SLineStyle = SLineStyle.Solid;
  80. get lineStyle(): SLineStyle {
  81. return this._lineStyle;
  82. }
  83. set lineStyle(v: SLineStyle) {
  84. this._lineStyle = v;
  85. this.update();
  86. }
  87. /** 图片加载是否完成 */
  88. isLoadOver: boolean = false;
  89. /** 图片的宽度 */
  90. private imgWidth: number = this.width;
  91. /** 图片的高度 */
  92. private imgHeight: number = this.height;
  93. /** 图片地址 */
  94. private _url: string = "";
  95. get url(): string {
  96. return this._url;
  97. }
  98. set url(v: string) {
  99. this._url = v;
  100. this.img = new Image();
  101. this.img.onload = (e): void => {
  102. // @ts-ignore
  103. const imgSrc = e.path[0].src;
  104. if (this.isUrlIdentical(imgSrc)) {
  105. this.isLoadOver = true;
  106. this.computeImgSize();
  107. this.$emit("imgLoadOver");
  108. this.update();
  109. }
  110. };
  111. this.img.onerror = (e): void => {
  112. // @ts-ignore
  113. const imgSrc = e.path[0].src;
  114. if (this.isUrlIdentical(imgSrc)) {
  115. this.isLoadOver = false;
  116. this.$emit("imgLoadOver");
  117. this.update();
  118. console.log("加载图片错误!", e);
  119. }
  120. };
  121. this.img.src = v;
  122. }
  123. /** 锚点list */
  124. anchorList: SAnchorItem[] = [];
  125. /** 宽度 */
  126. private _width: number = 64;
  127. /** 原点 */
  128. origin = new SPoint();
  129. get width(): number {
  130. return this._width;
  131. }
  132. set width(v: number) {
  133. if (v > 0) {
  134. if (v != this._width) {
  135. let w = this._width;
  136. this._width = v;
  137. this.onResize(
  138. new SSize(w, this._height),
  139. new SSize(this._width, this._height)
  140. );
  141. }
  142. }
  143. }
  144. /** 高度 */
  145. private _height: number = 64;
  146. get height(): number {
  147. return this._height;
  148. }
  149. set height(v: number) {
  150. if (v > 0) {
  151. if (v != this._height) {
  152. let h = this._height;
  153. this._height = v;
  154. this.onResize(
  155. new SSize(this._width, h),
  156. new SSize(this._width, this._height)
  157. );
  158. }
  159. }
  160. }
  161. /**编辑状态 */
  162. protected _status: SItemStatus = SItemStatus.Normal;
  163. get status(): SItemStatus {
  164. return this._status;
  165. }
  166. set status(value: SItemStatus) {
  167. const oldStatus = this._status;
  168. const newStatus = value;
  169. this._status = value;
  170. //状态变更触发事件
  171. this.$emit('StatusChange', oldStatus, newStatus)
  172. this.update();
  173. }
  174. //////////////////////////////////////////////////////////////////////////////////////////////////////////////
  175. //函数
  176. /**
  177. * 构造函数
  178. *
  179. * @param parent 指向父对象
  180. */
  181. constructor(parent: SGraphItem | null, url?: string) {
  182. super(parent);
  183. if (url) this.url = url;
  184. // this.initItem();
  185. this.origin = new SPoint(this.width / 2, this.height / 2);
  186. }
  187. /**
  188. * 将类中得数据转换为方便存储格式的方法
  189. *
  190. * return any 针对item类型保持相应的格式
  191. */
  192. toData(): any {
  193. }
  194. /**
  195. * 根据显示模式计算图片的宽高
  196. */
  197. computeImgSize(): void {
  198. if (this.isLoadOver) {
  199. // 要绘制图片的宽度
  200. let width = 0;
  201. // 要绘制图片的宽度
  202. let height = 0;
  203. // 图片item的宽高比
  204. let itemAspectRatio: number = this.width / this.height;
  205. // 原始图片的宽高比
  206. let imgAspectRatio: number =
  207. // @ts-ignore
  208. (this.img.width as number) / (this.img.height as number);
  209. // 原始图片的高宽比
  210. let imgHwRatio: number =
  211. // @ts-ignore
  212. (this.img.height as number) / (this.img.width as number);
  213. if (this.showType == SImageShowType.Full) {
  214. width = this.width;
  215. height = this.height;
  216. } else if (this.showType == SImageShowType.Equivalency) {
  217. if (itemAspectRatio > imgAspectRatio) {
  218. height = this.height;
  219. width = imgAspectRatio * height;
  220. } else if (itemAspectRatio < imgAspectRatio) {
  221. width = this.width;
  222. height = width * imgHwRatio;
  223. } else {
  224. width = this.width;
  225. height = this.height;
  226. }
  227. } else if (this.showType == SImageShowType.AutoFit) {
  228. // @ts-ignore
  229. this.width = this.img.width as number;
  230. // @ts-ignore
  231. this.height = this.img.height as number;
  232. width = this.width;
  233. height = this.height;
  234. }
  235. this.imgWidth = width;
  236. this.imgHeight = height;
  237. // 设置原点位置(默认左上角)
  238. if (this.originPosition == STextOrigin.Centrum) {
  239. this.origin = new SPoint(this.width / 2, this.height / 2);
  240. }
  241. }
  242. this.origin = new SPoint(this.width / 2, this.height / 2);
  243. this.update();
  244. } // Function computeImgSize()
  245. /**
  246. * 判断当前地址和回调地址是否相同
  247. *
  248. * @param imgUrl 图片回调地址
  249. * @return 当前地址和回调地址是否相同
  250. */
  251. private isUrlIdentical(imgUrl: string): boolean {
  252. if (this.url.indexOf("://") == -1) {
  253. // eslint-disable-next-line max-len
  254. const reg = /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*?)\s*$/i;
  255. if (reg.test(this.url)) {
  256. return this.url == imgUrl;
  257. } else {
  258. return this.url == this.GetUrlRelativePath(imgUrl);
  259. }
  260. } else {
  261. return this.url == imgUrl;
  262. }
  263. } // Function isUrlIdentical()
  264. /**
  265. * 截取绝对路径中的相对路径
  266. * @param url 绝对路径
  267. *
  268. */
  269. private GetUrlRelativePath(url: string): string {
  270. const arrUrl = url.split("//");
  271. const start = arrUrl[1].indexOf("/");
  272. const relUrl = arrUrl[1].substring(start);
  273. return relUrl;
  274. } // Function GetUrlRelativePath()
  275. /**
  276. * 大小改变
  277. */
  278. resize(oldSize: SRect, newSize: SRect): void {
  279. this.width = newSize.width;
  280. this.height = newSize.height;
  281. this.update()
  282. }
  283. /**
  284. * Item对象边界区域
  285. *
  286. * @return SRect
  287. */
  288. boundingRect(): SRect {
  289. return new SRect(
  290. -this.origin.x,
  291. -this.origin.y,
  292. this.width * 1,
  293. this.height * 1
  294. );
  295. } // Function boundingRect()
  296. /**
  297. * 宽高发发生变化
  298. *
  299. * @param oldSize 改之前的大小
  300. * @param newSize 改之后大小
  301. * */
  302. protected onResize(oldSize: SSize, newSize: SSize): void {
  303. this.computeImgSize();
  304. this.update();
  305. } // Function onResize()
  306. /**
  307. * Item绘制操作
  308. *
  309. * @param painter 绘画类
  310. */
  311. onDraw(painter: SPainter): void {
  312. painter.translate(-this.origin.x, -this.origin.y);
  313. if (this.isLoadOver) {
  314. // @ts-ignore
  315. painter.drawImage(this.img, 0, 0, this.imgWidth, this.imgHeight);
  316. }
  317. if (this.selected) {
  318. painter.shadow.shadowBlur = 10;
  319. painter.shadow.shadowColor = new SColor(`#00000033`);
  320. painter.shadow.shadowOffsetX = 5;
  321. painter.shadow.shadowOffsetY = 5;
  322. } else {
  323. painter.shadow.shadowColor = SColor.Transparent;
  324. }
  325. if (this.lineStyle == SLineStyle.Dashed) {
  326. painter.pen.lineDash = [
  327. painter.toPx(this.lineWidth * 3),
  328. painter.toPx(this.lineWidth * 7)
  329. ];
  330. } else if (this.lineStyle == SLineStyle.Dotted) {
  331. painter.pen.lineDash = [
  332. painter.toPx(2 * this.lineWidth),
  333. painter.toPx(2 * this.lineWidth)
  334. ];
  335. }
  336. painter.pen.lineWidth = this.lineWidth;
  337. painter.pen.color = this.strokeColor;
  338. painter.brush.color = SColor.Transparent;
  339. painter.drawRect(0, 0, this.width, this.height);
  340. } // Function onDraw()
  341. } // Class SImageItem