要将Angular中的Base64字符串转换为PDF并返回,可以使用以下代码示例:
import { Component } from '@angular/core';
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
@Component({
selector: 'app-pdf-converter',
template: `
`
})
export class PdfConverterComponent {
base64String: string;
pdfUrl: SafeUrl;
constructor(private sanitizer: DomSanitizer) {}
convertToPdf() {
// Assume base64String contains the Base64 string representation of the PDF
// Convert Base64 to binary
const byteCharacters = atob(this.base64String);
const byteNumbers = new Array(byteCharacters.length);
for (let i = 0; i < byteCharacters.length; i++) {
byteNumbers[i] = byteCharacters.charCodeAt(i);
}
const byteArray = new Uint8Array(byteNumbers);
// Create Blob from binary data
const blob = new Blob([byteArray], { type: 'application/pdf' });
// Create URL for the Blob
this.pdfUrl = this.sanitizer.bypassSecurityTrustUrl(window.URL.createObjectURL(blob));
}
}
在上面的示例中,我们首先创建了一个按钮,当用户单击按钮时,将触发convertToPdf
方法。在convertToPdf
方法中,我们将Base64字符串转换为二进制数据,并使用Blob
对象创建了一个PDF文件。然后,我们使用DomSanitizer
将Blob URL转换为安全的URL,并将其赋值给pdfUrl
变量。
在模板中,我们使用object
元素将PDF文件作为嵌入式文档显示。
请注意,为了使用DomSanitizer
服务,您需要在注入依赖项中添加DomSanitizer
。