consult-picture.component_20241210113940.ts 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. import { Component, OnInit } from '@angular/core';
  2. import { IonHeader, IonToolbar, IonTitle, IonContent } from '@ionic/angular/standalone';
  3. import { IonTextarea, IonButton,IonInput } from "@ionic/angular/standalone";
  4. import { DalleOptions, ImagineWork,FmodeChatCompletion } from 'fmode-ng';
  5. @Component({
  6. selector: 'app-consult-picture',
  7. templateUrl: './consult-picture.component.html',
  8. styleUrls: ['./consult-picture.component.scss'],
  9. standalone: true,
  10. imports: [
  11. IonHeader, IonToolbar, IonTitle, IonContent,
  12. IonButton,IonInput,
  13. IonTextarea
  14. ],
  15. })
  16. export class ConsultPictureComponent implements OnInit {
  17. userPrompt:string = "app名称为...的logo,一个爱心,聊天气泡,易于识别,颜色方案应体现温暖感和清晰感,建议使用...色和...色等色调,极具美观性,可爱风格"
  18. promptInput(ev:any){
  19. this.userPrompt = ev.detail.value;
  20. }
  21. imagineWork:ImagineWork|undefined
  22. images:Array<string> = []
  23. constructor(
  24. ){
  25. // 示例任务,自己生成图片后请存储新的ID
  26. this.imagineWork = new ImagineWork("lpJGiFwWeA");
  27. this.imagineWork.fetchTask().then(work=>{
  28. this.images = this.imagineWork?.images || [];
  29. })
  30. }
  31. PictureDescResult:string = `` // 画面描述结果
  32. async createImage(){
  33. this.imagineWork = new ImagineWork();
  34. //文本生成
  35. let PromptTemplate = `请你作为一名专业的设计师,结合logo的基础设计元素帮我设计一个贴切我项目的logo
  36. 要求如下:
  37. ${this.userPrompt}
  38. `
  39. let completion = new FmodeChatCompletion([
  40. {role:"system",content:""},
  41. {role:"user",content:PromptTemplate}
  42. ])
  43. completion.sendCompletion().subscribe((message:any)=>{
  44. // 打印消息体
  45. console.log(message.content)
  46. // 赋值消息内容给组件内属性
  47. this.PictureDescResult = message.content
  48. if(message?.complete){ // 判断message为完成状态,则设置isComplete为完成
  49. //图片生成
  50. let PicturePrompt = `${this.PictureDescResult}`
  51. //\n风格:科技风。画面不带任何文字。突出色彩。
  52. let options:DalleOptions = {prompt:PicturePrompt}
  53. this.imagineWork?.draw(options).subscribe(work=>{
  54. console.log("imagineWork",work?.toJSON())
  55. console.log("images",work?.get("images"))
  56. if(work?.get("images")?.length){
  57. this.images = work?.get("images");
  58. }
  59. })
  60. }
  61. })
  62. }
  63. ngOnInit() {
  64. }
  65. }