albumDrawBox.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <template>
  2. <photo-consumer
  3. class="carousel-item"
  4. :src="watermark || base_img_url2 + (photo.resFilename ? photo.resFilename : photo.filename) + resize"
  5. >
  6. <img v-if="Math.abs(current - index) < 3" crossorigin="anonymous" @load="drawWatermark($event)" loading="lazy" :src="watermark || (base_img_url2 + (photo.resFilename ? photo.resFilename : photo.filename) + resize)" style="width: 100%;" />
  7. <canvas ref="canvasRef" style="position: absolute;"></canvas>
  8. <div class="tag-text" v-if="showTagBox" >
  9. <span v-html="photo.growText"></span>
  10. <button class="close-button" @click="hideTagBox">✖</button>
  11. </div>
  12. <div class="tag-box right" :class="{'leftTop': 'leftTop'}">{{ index+1 }}/{{ length }}</div>
  13. <!-- <div class="center-mark">mark</div>-->
  14. </photo-consumer>
  15. </template>
  16. <script setup>
  17. import { ref, onMounted, onBeforeUnmount, defineProps } from "vue";
  18. import { base_img_url2 } from "@/api/config";
  19. import {imageCache,loadImage} from "./cacheImg.js"
  20. import {dateFormat} from "@/utils/date_util.js"
  21. import {pointToFormat} from "@/views/util.js"
  22. import {drawTextInRect, drawBorderImageInRect, drawImageInRect, drawRectInRect, drawHorizontalTextList} from "./utils"
  23. const resize = "?x-oss-process=image/resize,p_30/format,webp/quality,q_40";
  24. const canvasRef = ref(null);
  25. const watermark = ref(null)
  26. const baseMapBig = ref(false)
  27. const props = defineProps({
  28. farmId:{
  29. type: [Number,String],
  30. required: true
  31. },
  32. photo:{
  33. type: Object,
  34. required: true
  35. },
  36. index:{
  37. type: Number,
  38. required: true
  39. },
  40. length:{
  41. type: Number,
  42. required: true
  43. },
  44. current:{
  45. type: Number,
  46. required: true
  47. }
  48. })
  49. let img = null;
  50. let ctx = null;
  51. let data = {year:props.photo.uploadDate.substring(0,4),
  52. monthDay:dateFormat(new Date(props.photo.uploadDate),'mm/dd'),
  53. address:props.photo.district.replaceAll("\"","") + props.photo.gardenName,
  54. tempImg:imageCache.get("temp"),temp:"10°C-20°C",wendu:"适宜",
  55. feiniao:imageCache.get("feiniao"),
  56. baseMap:imageCache.get("base_map_"+props.photo.treeId),
  57. fusheImg:imageCache.get("fushe"),fushe:"光照优",
  58. shiduImg:imageCache.get("shidu"),shidu:"湿度适宜",
  59. text:"病害风险,及时喷药",
  60. shotCode:props.photo.shotCode,
  61. treeCode:props.photo.treeCode,
  62. pingzhong:props.photo.pingzhong,
  63. uploadDate:props.photo.uploadDate,
  64. }
  65. async function drawWatermark(event) {
  66. img = event.target
  67. await loadImage(props.photo.baseMap,"base_map_"+props.photo.treeId)
  68. data.baseMap = imageCache.get("base_map_"+props.photo.treeId)
  69. if(!watermark.value){
  70. let param = {farmId:props.farmId, date: props.photo.uploadDate}
  71. let weather = null
  72. VE_API.image.findSuitabilityByPoint(param).then((res)=>{
  73. if(res.code === 0){
  74. weather = res.data
  75. drawWatermark2(img,weather)
  76. }else{
  77. drawWatermark2(img,null)
  78. }
  79. }).catch((err)=>{
  80. console.error(err)
  81. })
  82. }
  83. }
  84. function drawWatermark2(img,weather) {
  85. const canvas = canvasRef.value;
  86. let scale = 3
  87. canvas.width = img.width * scale;
  88. canvas.height = img.height * scale;
  89. ctx = canvas.getContext('2d');
  90. ctx.scale(scale, scale)
  91. ctx.drawImage(img, 0, 0, img.width, img.height);
  92. drawBottom(img.width, img.height, weather)
  93. watermark.value = canvas.toDataURL();
  94. }
  95. // console.log(data)
  96. const drawBottom = (imgWidth, imgHeight, weather) => {
  97. if (weather) {
  98. data["temp"] = weather.tempMin + "°C" + "-" + weather.tempMax + "°C" + " " + weather.tempSuitability
  99. data["fushe"] = "光照"+weather.vindexSuitability
  100. data["shidu"] = "湿度"+weather.humiditySuitability
  101. }
  102. // 设置文本样式
  103. ctx.font = "8px Arial";
  104. ctx.textAlign = "left"; // 设置为左对齐
  105. let imgRect = { x: 0, y: 0, width: imgWidth, height: imgHeight}
  106. // 绘制头部黑色半透明遮罩
  107. let topRect = drawRectInRect(ctx,imgRect, 0, 0, 70, 10,"rgba(0, 0, 0, 0.6)")
  108. // 绘制黑色半透明遮罩
  109. let bottomRect = drawRectInRect(ctx,imgRect, 0, 5/6 * 100, 100, 1/6 * 100,"rgba(0, 0, 0, 0.6)")
  110. drawHorizontalTextList(ctx, topRect, '#ffffff90',[data.treeCode, "蓬径:5m", "高度:3m", "高产树",data.pingzhong],
  111. 40, 0,
  112. 65 , 0,"|",0,
  113. 30,"#ffffff50",1,2)
  114. ctx.fillStyle = "white"; // 文本颜色为白色
  115. // 绘制温度
  116. let startXPercent = 1;
  117. drawImageInRect(ctx, bottomRect, data.tempImg, startXPercent, 5+10, 5, 30)
  118. drawTextInRect(ctx, bottomRect,`${data.temp}`,startXPercent + 4, 28+10, 20)
  119. // 绘制湿度
  120. drawImageInRect(ctx, bottomRect, data.shiduImg, startXPercent+26, 7 + 10, 4, 30)
  121. drawTextInRect(ctx, bottomRect,`${data.shidu}`,startXPercent + 31, 28 + 10, 20)
  122. // 绘制辐射
  123. drawImageInRect(ctx, bottomRect, data.fusheImg, startXPercent+26 + 18, 7 + 10, 5, 30)
  124. drawTextInRect(ctx, bottomRect,`${data.fushe}`,startXPercent+31 + 18, 28 + 10, 20)
  125. //绘制日期信息
  126. ctx.fillStyle = "#FFFFFF";
  127. drawTextInRect(ctx, bottomRect,`${formatDate(new Date(data.uploadDate))}`,startXPercent +1.7, 75, 24)
  128. //绘制位置信息
  129. ctx.fillStyle = "#FFFFFF90";
  130. drawTextInRect(ctx, bottomRect,`${data.treeCode}_S3_SCS3-3_D0P0G1`,startXPercent +13, 75, 18)
  131. if(data.baseMap){
  132. drawBorderImageInRect(ctx, imgRect, data.baseMap, 2/3*100, 2/3*100,
  133. 1/3*100, 1/3*100, 5, 5)
  134. }
  135. }
  136. const showTagBox = ref(true); // 控制 tag-box 的显示状态
  137. const hideTagBox = (event) => {
  138. event.stopPropagation();
  139. showTagBox.value = false; // 隐藏 tag-box
  140. };
  141. const formatDate = (date) => {
  142. const year = date.getFullYear();
  143. const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始,需要加1
  144. const day = String(date.getDate()).padStart(2, '0');
  145. return `${(year+"").substring(2)}${month}${day}`;
  146. };
  147. </script>
  148. <style lang="scss" scoped>
  149. .canvas-container {
  150. width: 100%;
  151. height: 100%;
  152. display: flex;
  153. justify-content: center;
  154. }
  155. .carousel-item {
  156. min-width: 100%;
  157. flex-shrink: 0;
  158. width: 100%;
  159. pointer-events: auto;
  160. position: relative;
  161. .tag-box {
  162. position: absolute;
  163. bottom: 30%;
  164. left: 50%;
  165. transform: translate(-50%, 50%); // 确保在高二分之一的位置水平居中
  166. height: 18px;
  167. padding: 0 6px;
  168. background: rgba(108, 108, 108, 0.67);
  169. border-radius: 10px;
  170. display: flex;
  171. align-items: center;
  172. color: #FFFFFF;
  173. font-size: 12px;
  174. &.right {
  175. left: auto;
  176. right: 10px;
  177. }
  178. &.leftTop {
  179. height: 25px;
  180. line-height: 26px;
  181. padding: 0 8px;
  182. border-radius: 16px;
  183. background: rgba(0, 0, 0, 0.6);
  184. bottom: auto;
  185. top: 6px;
  186. }
  187. }
  188. .tag-text {
  189. position: absolute;
  190. bottom: 31%;
  191. left: 50%;
  192. width: 80%;
  193. transform: translate(-50%, 50%); // 确保在高二分之一的位置水平居中
  194. height: 24px;
  195. padding: 10px 0px 10px 0px;
  196. background: rgba(0, 0, 0, 0.67);
  197. border-radius: 6px;
  198. display: flex;
  199. align-items: center;
  200. justify-content: center;
  201. text-align: center;
  202. color: #FFFFFF;
  203. font-size: 12px;
  204. }
  205. .center-mark {
  206. position: absolute;
  207. bottom: 10px;
  208. left: 50%;
  209. transform: translateX(-50%);
  210. color: #36402c;
  211. font-size: rpx(24);
  212. font-weight: bold;
  213. padding: rpx(14) rpx(30);
  214. background: linear-gradient(
  215. 90deg,
  216. rgba(255, 255, 255, 0) 0%,
  217. rgba(255, 255, 255, 0.6) 24%,
  218. rgba(255, 255, 255, 0.6) 76%,
  219. rgba(255, 255, 255, 0) 100%
  220. );
  221. }
  222. }
  223. .carousel-item img {
  224. width: 100%;
  225. display: block;
  226. }
  227. canvas {
  228. position: absolute;
  229. }
  230. .close-button {
  231. background: transparent;
  232. border: none;
  233. color: #FFFFFF;
  234. cursor: pointer;
  235. font-size: 10px; // 可以根据需求调整大小
  236. position: absolute;
  237. top: -1px;
  238. right: -9px; // 调整为合适的间距
  239. transform: translateY(-50%);
  240. }
  241. .floating-img {
  242. position: absolute;
  243. bottom: 0;
  244. right: 0;
  245. width: auto !important;
  246. height: 25% !important;
  247. }
  248. .floating-img-big {
  249. position: fixed !important;
  250. z-index: 99999 !important;
  251. top: 50% !important;
  252. left: 50% !important;
  253. width: auto !important;
  254. height: 100% !important;
  255. transform: translate(-50%, -50%) !important;
  256. }
  257. </style>