处理从word粘贴图片不显示问题

This commit is contained in:
jacky 2024-05-09 18:17:00 +08:00
parent ece9b45c55
commit c766105374
1 changed files with 86 additions and 0 deletions

View File

@ -75,13 +75,99 @@ const handleCreated = (editor) => {
const customPaste = (editor, event, callback) => {
let htmlData = event.clipboardData.getData('text/html') // html
console.log(htmlData)
let rtfData = event.clipboardData.getData('text/rtf') // html
console.log('-------------- rtfData --------------', rtfData)
htmlData = htmlData.replace(/<\/?span[^>]*>/g, '');
htmlData = htmlData.replace('<img', '<img referrerpolicy="no-referrer"')
// word
// htmlimgsrc
const imgSrcs = htmlData.match(/<img [^>]*src=['"]([^'"]+)[^>]*>/g);
//
if (imgSrcs && Array.isArray(imgSrcs) && imgSrcs.length) {
console.log('imgSrcs', imgSrcs)
// rtf
const rtfImageData = extractImageDataFromRtf(rtfData);
console.log('rtfImageData', rtfImageData)
//
if (rtfImageData.length) {
// TODO,
// htmlimgsrcref
htmlData = replaceImageFile(htmlData, imgSrcs, rtfImageData)
console.log('+++++++++++++++++++ replace after +++++++++++++++++++', htmlData)
}
}
editor.dangerouslyInsertHtml(htmlData);
event.preventDefault()
callback(false)
}
/**
* 从rtf内容中匹配返回图片数据的集合
* @param rtfData
* @return Array
*/
const extractImageDataFromRtf = (rtfData) => {
if (!rtfData) {
return [];
}
const regexPictureHeader = /{\\pict[\s\S]+?({\\\*\\blipuid\s?[\da-fA-F]+)[\s}]*/
const regexPicture = new RegExp('(?:(' + regexPictureHeader.source + '))([\\da-fA-F\\s]+)\\}', 'g')
const images = rtfData.match(regexPicture)
const result = ref([])
if (images) {
for (const image of images) {
const imageType = ref(false)
if (image.includes('\\pngblip')) {
imageType.value = 'image/png'
} else if (image.includes('\\jpegblip')) {
imageType.value = 'image/jpeg'
}
if (imageType.value) {
result.value.push({
hex: image.replace(regexPictureHeader, '').replace(/[^\da-fA-F]/g, ''),
type: imageType.value
});
}
}
}
return result.value;
}
/**
* 将html内容中img标签的属性值替换
* @param htmlData html内容
* @param imageSrcs html中img的属性src的值的集合
* @param imagesHexSources rtf中图片数据的集合与html内容中的img标签对应
* @param isBase64Data 是否是Base64的图片数据
* @return String
*/
const replaceImageFile = (htmlData, imageSrcs, imagesHexSources, isBase64Data = true) => {
if (imageSrcs.length === imagesHexSources.length) {
for (let i = 0; i < imageSrcs.length; i++) {
const newSrc = isBase64Data
? `<img src='data:${imagesHexSources[i].type};base64,${convertHexToBase64(imagesHexSources[i].hex)}'/>`
: imagesHexSources[i]
htmlData = htmlData.replace(imageSrcs[i], newSrc);
}
}
return htmlData;
}
/**
* 十六进制转base64
*/
const convertHexToBase64 = (hexString) => {
return btoa(hexString.match(/\w{2}/g).map(char => {
return String.fromCharCode(parseInt(char, 16));
}).join(''));
}
watch(() => props.modelValue, () => {
valueHtml.value = props.modelValue
})