csdn1233 4 months ago
parent
commit
ac538f9ef4

+ 34 - 0
AIart-app/src/app/interest-picture/interest-picture.component.html

@@ -0,0 +1,34 @@
+<ion-header [translucent]="true">
+  <ion-toolbar>
+    <ion-title>
+      示例:情景创作{{imagineWork?.progress || 0}}
+    </ion-title>
+  </ion-toolbar>
+</ion-header>
+
+<ion-content [fullscreen]="true">
+  <!-- 生成提示词 -->
+  <ion-textarea [value]="userPrompt" (ionInput)="promptInput($event)" placeholder="情景创作" autoGrow="true"></ion-textarea>
+  <ion-button (click)="createImage()" expand="block">情景创作</ion-button>
+
+  <!-- 意境画面提示词 -->
+  <div>
+    {{PictureDescResult}}
+  </div>
+  <!-- 生成结果 -->
+  @if(images.length) {
+  @for(imageUrl of images;track imageUrl){
+  <img [src]="imageUrl" alt="" srcset="">
+  }
+  }
+  <!-- 生成状态 -->
+  @if(!images.length){
+  @if(imagineWork){
+  <h1>生成中</h1>
+  }
+  @if(!imagineWork){
+  <h1>未开始</h1>
+  }
+  }
+
+</ion-content>

+ 0 - 0
AIart-app/src/app/interest-picture/interest-picture.component.scss


+ 22 - 0
AIart-app/src/app/interest-picture/interest-picture.component.spec.ts

@@ -0,0 +1,22 @@
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
+
+import { InterestPictureComponent } from './interest-picture.component';
+
+describe('InterestPictureComponent', () => {
+  let component: InterestPictureComponent;
+  let fixture: ComponentFixture<InterestPictureComponent>;
+
+  beforeEach(waitForAsync(() => {
+    TestBed.configureTestingModule({
+      imports: [InterestPictureComponent],
+    }).compileComponents();
+
+    fixture = TestBed.createComponent(InterestPictureComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  }));
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 68 - 0
AIart-app/src/app/interest-picture/interest-picture.component.ts

@@ -0,0 +1,68 @@
+import { Component, OnInit } from '@angular/core';
+import { IonHeader, IonToolbar, IonTitle, IonContent } from '@ionic/angular/standalone';
+import { IonTextarea, IonButton, IonInput } from "@ionic/angular/standalone";
+import { DalleOptions, FmodeChatCompletion, ImagineWork } from 'fmode-ng';
+
+@Component({
+  selector: 'app-interest-picture',
+  templateUrl: './interest-picture.component.html',
+  styleUrls: ['./interest-picture.component.scss'],
+  standalone: true,
+  imports: [
+    IonHeader, IonToolbar, IonTitle, IonContent,
+    IonButton,
+    IonInput,
+    IonTextarea
+  ],
+})
+export class InterestPictureComponent implements OnInit {
+  ngOnInit(): void {
+
+  }
+  userPrompt: string = "犬吠水声中,桃花带露浓。\n树深时见鹿,溪午不闻钟。"
+  promptInput(ev: any) {
+    this.userPrompt = ev.detail.value;
+  }
+  imagineWork: ImagineWork | undefined
+  images: Array<string> = []
+  constructor(
+  ) {
+    // 示例任务,自己生成图片后请存储新的ID
+    this.imagineWork = new ImagineWork("lpJGiFwWeA");
+    this.imagineWork.fetchTask().then(work => {
+      this.images = this.imagineWork?.images || [];
+    })
+  }
+
+  PictureDescResult = ``
+  async createImage() {
+    this.imagineWork = new ImagineWork();
+    let PromptTemplate = `
+    您是一名专业的美术画家,请您根据古诗文的内容,将其描述的画面、场景、人物、物品等用最简短的语言表达,直接给出画面,并且以中国古风意境为主,
+    诗文如下:
+    ${this.userPrompt}
+    `
+    let completion = new FmodeChatCompletion([
+      { role: "system", content: "" },
+      { role: "user", content: PromptTemplate }
+    ])
+    completion.sendCompletion().subscribe((message: any) => {
+      // 打印消息体
+      console.log(message.content)
+      // 赋值消息内容给组件内属性
+      this.PictureDescResult = message.content
+      if (message?.complete) {
+        let PicturePrompt
+        let options: DalleOptions = { prompt: this.userPrompt }
+        this.imagineWork?.draw(options).subscribe(work => {
+          console.log("imagineWork", work?.toJSON())
+          console.log("images", work?.get("images"))
+          if (work?.get("images")?.length) {
+            this.images = work?.get("images");
+          }
+        })
+      }
+    })
+  }
+
+}

+ 2 - 2
AIart-app/src/app/tab1/tab1.page.html

@@ -33,8 +33,8 @@
             <ion-label>兴趣测试</ion-label>
             <ion-ripple-effect></ion-ripple-effect>
           </ion-tab-button>
-          <ion-tab-button tab="ebook">
-            <ion-label>电子书</ion-label>
+          <ion-tab-button tab="ebook" class="rounded-rectangle" (click)="goToInterestPicture()">
+            <ion-label>意境呈现</ion-label>
           </ion-tab-button>
         </ion-tab-bar>
       </ion-tabs>

+ 3 - 0
AIart-app/src/app/tab1/tab1.page.ts

@@ -27,4 +27,7 @@ export class Tab1Page {
   goToViewAll() {
     this.router.navigate(['/tabs/view-all'])
   }
+  goToInterestPicture() {
+    this.router.navigate(['/tabs/interest-picture'])
+  }
 }

+ 5 - 0
AIart-app/src/app/tabs/tabs.routes.ts

@@ -41,6 +41,11 @@ export const routes: Routes = [
         loadComponent: () =>
           import('../view-all/view-all.component').then((m) => m.ViewAllComponent),
       },
+      {
+        path: 'interest-picture',
+        loadComponent: () =>
+          import('../interest-picture/interest-picture.component').then((m) => m.InterestPictureComponent),
+      },
       {
         path: '',
         redirectTo: '/tabs/tab1',