mirror of
https://github.com/JimLiu/baoyu-skills.git
synced 2026-07-29 13:19:47 +08:00
fix: remove opacity of watermark
This commit is contained in:
@@ -230,7 +230,7 @@ Check available skills. If multiple, ask user.
|
|||||||
|
|
||||||
**5.3 Apply Watermark** (if enabled)
|
**5.3 Apply Watermark** (if enabled)
|
||||||
|
|
||||||
Add: `Include a subtle watermark "[content]" at [position] with [opacity*100]% visibility.`
|
Add: `Include a subtle watermark "[content]" at [position].`
|
||||||
|
|
||||||
**5.4 Generate**
|
**5.4 Generate**
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ watermark:
|
|||||||
enabled: false
|
enabled: false
|
||||||
content: ""
|
content: ""
|
||||||
position: bottom-right # bottom-right|bottom-left|bottom-center|top-right
|
position: bottom-right # bottom-right|bottom-left|bottom-center|top-right
|
||||||
opacity: 0.7 # 0.1-1.0
|
|
||||||
|
|
||||||
preferred_style:
|
preferred_style:
|
||||||
name: null # Built-in or custom style name
|
name: null # Built-in or custom style name
|
||||||
@@ -46,7 +45,6 @@ custom_styles:
|
|||||||
| `watermark.enabled` | bool | false | Enable watermark |
|
| `watermark.enabled` | bool | false | Enable watermark |
|
||||||
| `watermark.content` | string | "" | Watermark text (@username or custom) |
|
| `watermark.content` | string | "" | Watermark text (@username or custom) |
|
||||||
| `watermark.position` | enum | bottom-right | Position on image |
|
| `watermark.position` | enum | bottom-right | Position on image |
|
||||||
| `watermark.opacity` | float | 0.7 | Transparency (0.1-1.0) |
|
|
||||||
| `preferred_style.name` | string | null | Style name or null |
|
| `preferred_style.name` | string | null | Style name or null |
|
||||||
| `preferred_style.description` | string | "" | Custom notes/override |
|
| `preferred_style.description` | string | "" | Custom notes/override |
|
||||||
| `language` | string | null | Output language (null = auto-detect) |
|
| `language` | string | null | Output language (null = auto-detect) |
|
||||||
@@ -105,7 +103,6 @@ watermark:
|
|||||||
enabled: true
|
enabled: true
|
||||||
content: "@myaccount"
|
content: "@myaccount"
|
||||||
position: bottom-right
|
position: bottom-right
|
||||||
opacity: 0.5
|
|
||||||
|
|
||||||
preferred_style:
|
preferred_style:
|
||||||
name: notion
|
name: notion
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ watermark:
|
|||||||
enabled: false
|
enabled: false
|
||||||
content: ""
|
content: ""
|
||||||
position: bottom-right # bottom-right|bottom-left|bottom-center|top-right
|
position: bottom-right # bottom-right|bottom-left|bottom-center|top-right
|
||||||
opacity: 0.5 # 0.1-1.0 (lower default for comics)
|
|
||||||
|
|
||||||
preferred_art: null # ligne-claire|manga|realistic|ink-brush|chalk
|
preferred_art: null # ligne-claire|manga|realistic|ink-brush|chalk
|
||||||
preferred_tone: null # neutral|warm|dramatic|romantic|energetic|vintage|action
|
preferred_tone: null # neutral|warm|dramatic|romantic|energetic|vintage|action
|
||||||
@@ -42,7 +41,6 @@ character_presets:
|
|||||||
| `watermark.enabled` | bool | false | Enable watermark |
|
| `watermark.enabled` | bool | false | Enable watermark |
|
||||||
| `watermark.content` | string | "" | Watermark text (@username or custom) |
|
| `watermark.content` | string | "" | Watermark text (@username or custom) |
|
||||||
| `watermark.position` | enum | bottom-right | Position on image |
|
| `watermark.position` | enum | bottom-right | Position on image |
|
||||||
| `watermark.opacity` | float | 0.5 | Transparency (0.1-1.0, lower for comics) |
|
|
||||||
| `preferred_art` | string | null | Art style (ligne-claire, manga, realistic, ink-brush, chalk) |
|
| `preferred_art` | string | null | Art style (ligne-claire, manga, realistic, ink-brush, chalk) |
|
||||||
| `preferred_tone` | string | null | Tone (neutral, warm, dramatic, romantic, energetic, vintage, action) |
|
| `preferred_tone` | string | null | Tone (neutral, warm, dramatic, romantic, energetic, vintage, action) |
|
||||||
| `preferred_layout` | string | null | Layout preference or null |
|
| `preferred_layout` | string | null | Layout preference or null |
|
||||||
@@ -113,7 +111,6 @@ watermark:
|
|||||||
enabled: true
|
enabled: true
|
||||||
content: "@comicstudio"
|
content: "@comicstudio"
|
||||||
position: bottom-right
|
position: bottom-right
|
||||||
opacity: 0.4
|
|
||||||
|
|
||||||
preferred_art: manga
|
preferred_art: manga
|
||||||
preferred_tone: neutral
|
preferred_tone: neutral
|
||||||
|
|||||||
@@ -28,19 +28,6 @@ description: Watermark configuration guide for baoyu-comic
|
|||||||
| `bottom-center` | Webtoon vertical scroll, centered designs | Text-heavy bottom area |
|
| `bottom-center` | Webtoon vertical scroll, centered designs | Text-heavy bottom area |
|
||||||
| `top-right` | **Not recommended for comics** | Always - conflicts with page numbers |
|
| `top-right` | **Not recommended for comics** | Always - conflicts with page numbers |
|
||||||
|
|
||||||
## Opacity for Comics
|
|
||||||
|
|
||||||
Comics typically use lower opacity than infographics to avoid disrupting panel flow:
|
|
||||||
|
|
||||||
| Opacity | Visual Effect | Use Case |
|
|
||||||
|---------|---------------|----------|
|
|
||||||
| 0.3 | Very subtle, barely visible | **Recommended for comics** |
|
|
||||||
| 0.4 | Light presence | Balance of visibility and subtlety |
|
|
||||||
| 0.5 | Noticeable | Standard comics default |
|
|
||||||
| 0.6+ | Strong presence | Not recommended (distracting) |
|
|
||||||
|
|
||||||
**Default**: 0.5 (compared to 0.7 for infographics)
|
|
||||||
|
|
||||||
## Content Format
|
## Content Format
|
||||||
|
|
||||||
| Format | Example | Style |
|
| Format | Example | Style |
|
||||||
@@ -63,10 +50,9 @@ Comics typically use lower opacity than infographics to avoid disrupting panel f
|
|||||||
When watermark is enabled, add to image generation prompt:
|
When watermark is enabled, add to image generation prompt:
|
||||||
|
|
||||||
```
|
```
|
||||||
Include a subtle watermark "[content]" positioned at [position]
|
Include a subtle watermark "[content]" positioned at [position].
|
||||||
with approximately [opacity*100]% visibility. The watermark should
|
The watermark should be legible but not distracting from the comic panels
|
||||||
be legible but not distracting from the comic panels and storytelling.
|
and storytelling. Ensure watermark does not overlap speech bubbles or key action.
|
||||||
Ensure watermark does not overlap speech bubbles or key action.
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Common Issues
|
## Common Issues
|
||||||
@@ -76,5 +62,5 @@ Ensure watermark does not overlap speech bubbles or key action.
|
|||||||
| Watermark invisible on dark panels | Adjust contrast or add subtle outline |
|
| Watermark invisible on dark panels | Adjust contrast or add subtle outline |
|
||||||
| Watermark overlaps speech bubble | Change position or lower on page |
|
| Watermark overlaps speech bubble | Change position or lower on page |
|
||||||
| Watermark inconsistent across pages | Use session ID for consistency |
|
| Watermark inconsistent across pages | Use session ID for consistency |
|
||||||
| Watermark too prominent | Decrease opacity (0.3-0.4 for comics) |
|
| Watermark too prominent | Change position or reduce size |
|
||||||
| Conflicts with page number | Never use top-right position |
|
| Conflicts with page number | Never use top-right position |
|
||||||
|
|||||||
@@ -615,9 +615,8 @@ Style notes: [key characteristics from style definition]
|
|||||||
**Watermark Application** (if enabled in preferences):
|
**Watermark Application** (if enabled in preferences):
|
||||||
Add to prompt:
|
Add to prompt:
|
||||||
```
|
```
|
||||||
Include a subtle watermark "[content]" positioned at [position]
|
Include a subtle watermark "[content]" positioned at [position].
|
||||||
with approximately [opacity*100]% visibility. The watermark should
|
The watermark should be legible but not distracting from the main content.
|
||||||
be legible but not distracting from the main content.
|
|
||||||
```
|
```
|
||||||
Reference: `references/config/watermark-guide.md`
|
Reference: `references/config/watermark-guide.md`
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ watermark:
|
|||||||
enabled: false
|
enabled: false
|
||||||
content: ""
|
content: ""
|
||||||
position: bottom-right # bottom-right|bottom-left|bottom-center|top-right
|
position: bottom-right # bottom-right|bottom-left|bottom-center|top-right
|
||||||
opacity: 0.7 # 0.1-1.0
|
|
||||||
|
|
||||||
preferred_type: null # hero|conceptual|typography|metaphor|scene|minimal or null for auto-select
|
preferred_type: null # hero|conceptual|typography|metaphor|scene|minimal or null for auto-select
|
||||||
|
|
||||||
@@ -52,7 +51,6 @@ custom_styles:
|
|||||||
| `watermark.enabled` | bool | false | Enable watermark |
|
| `watermark.enabled` | bool | false | Enable watermark |
|
||||||
| `watermark.content` | string | "" | Watermark text (@username or custom) |
|
| `watermark.content` | string | "" | Watermark text (@username or custom) |
|
||||||
| `watermark.position` | enum | bottom-right | Position on image |
|
| `watermark.position` | enum | bottom-right | Position on image |
|
||||||
| `watermark.opacity` | float | 0.7 | Transparency (0.1-1.0) |
|
|
||||||
| `preferred_type` | string | null | Type name or null for auto |
|
| `preferred_type` | string | null | Type name or null for auto |
|
||||||
| `preferred_style` | string | null | Style name or null for auto |
|
| `preferred_style` | string | null | Style name or null for auto |
|
||||||
| `preferred_text` | string | title-only | Text density level |
|
| `preferred_text` | string | title-only | Text density level |
|
||||||
@@ -145,7 +143,6 @@ watermark:
|
|||||||
enabled: true
|
enabled: true
|
||||||
content: "myblog.com"
|
content: "myblog.com"
|
||||||
position: bottom-right
|
position: bottom-right
|
||||||
opacity: 0.5
|
|
||||||
|
|
||||||
preferred_type: conceptual
|
preferred_type: conceptual
|
||||||
|
|
||||||
|
|||||||
@@ -28,15 +28,6 @@ description: Watermark configuration guide for baoyu-cover-image
|
|||||||
| `bottom-center` | Centered designs | Text-heavy bottom area |
|
| `bottom-center` | Centered designs | Text-heavy bottom area |
|
||||||
| `top-right` | Bottom-heavy content | Title/header in top-right |
|
| `top-right` | Bottom-heavy content | Title/header in top-right |
|
||||||
|
|
||||||
## Opacity Examples
|
|
||||||
|
|
||||||
| Opacity | Visual Effect | Use Case |
|
|
||||||
|---------|---------------|----------|
|
|
||||||
| 0.3 | Very subtle, barely visible | Clean aesthetic priority |
|
|
||||||
| 0.5 | Balanced, noticeable but not distracting | Default recommendation |
|
|
||||||
| 0.7 | Clearly visible | Brand recognition priority |
|
|
||||||
| 0.9 | Strong presence | Anti-copy protection |
|
|
||||||
|
|
||||||
## Content Format
|
## Content Format
|
||||||
|
|
||||||
| Format | Example | Style |
|
| Format | Example | Style |
|
||||||
@@ -51,16 +42,14 @@ description: Watermark configuration guide for baoyu-cover-image
|
|||||||
1. **Consistency**: Use same watermark across all covers
|
1. **Consistency**: Use same watermark across all covers
|
||||||
2. **Legibility**: Ensure watermark readable on both light/dark areas
|
2. **Legibility**: Ensure watermark readable on both light/dark areas
|
||||||
3. **Size**: Keep subtle - should not distract from content
|
3. **Size**: Keep subtle - should not distract from content
|
||||||
4. **Contrast**: Adjust opacity based on cover background
|
|
||||||
|
|
||||||
## Prompt Integration
|
## Prompt Integration
|
||||||
|
|
||||||
When watermark is enabled, add to image generation prompt:
|
When watermark is enabled, add to image generation prompt:
|
||||||
|
|
||||||
```
|
```
|
||||||
Include a subtle watermark "[content]" positioned at [position]
|
Include a subtle watermark "[content]" positioned at [position].
|
||||||
with approximately [opacity*100]% visibility. The watermark should
|
The watermark should be legible but not distracting from the main content.
|
||||||
be legible but not distracting from the main content.
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Cover-Specific Considerations
|
## Cover-Specific Considerations
|
||||||
@@ -75,7 +64,6 @@ be legible but not distracting from the main content.
|
|||||||
|
|
||||||
| Issue | Solution |
|
| Issue | Solution |
|
||||||
|-------|----------|
|
|-------|----------|
|
||||||
| Watermark invisible | Increase opacity or adjust position |
|
| Watermark invisible | Adjust position or check contrast |
|
||||||
| Watermark too prominent | Decrease opacity (0.3-0.5) |
|
| Watermark too prominent | Change position or reduce size |
|
||||||
| Watermark overlaps title | Change position or reduce title area |
|
| Watermark overlaps title | Change position or reduce title area |
|
||||||
| Inconsistent appearance | Use fixed opacity/position in preferences |
|
|
||||||
|
|||||||
@@ -359,9 +359,8 @@ With confirmed outline + style + layout:
|
|||||||
**Watermark Application** (if enabled in preferences):
|
**Watermark Application** (if enabled in preferences):
|
||||||
Add to each image generation prompt:
|
Add to each image generation prompt:
|
||||||
```
|
```
|
||||||
Include a subtle watermark "[content]" positioned at [position]
|
Include a subtle watermark "[content]" positioned at [position].
|
||||||
with approximately [opacity*100]% visibility. The watermark should
|
The watermark should be legible but not distracting from the main content.
|
||||||
be legible but not distracting from the main content.
|
|
||||||
```
|
```
|
||||||
Reference: `references/config/watermark-guide.md`
|
Reference: `references/config/watermark-guide.md`
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ watermark:
|
|||||||
enabled: false
|
enabled: false
|
||||||
content: ""
|
content: ""
|
||||||
position: bottom-right # bottom-right|bottom-left|bottom-center|top-right
|
position: bottom-right # bottom-right|bottom-left|bottom-center|top-right
|
||||||
opacity: 0.7 # 0.1-1.0
|
|
||||||
|
|
||||||
preferred_style:
|
preferred_style:
|
||||||
name: null # Built-in or custom style name
|
name: null # Built-in or custom style name
|
||||||
@@ -46,7 +45,6 @@ custom_styles:
|
|||||||
| `watermark.enabled` | bool | false | Enable watermark |
|
| `watermark.enabled` | bool | false | Enable watermark |
|
||||||
| `watermark.content` | string | "" | Watermark text (@username or custom) |
|
| `watermark.content` | string | "" | Watermark text (@username or custom) |
|
||||||
| `watermark.position` | enum | bottom-right | Position on image |
|
| `watermark.position` | enum | bottom-right | Position on image |
|
||||||
| `watermark.opacity` | float | 0.7 | Transparency (0.1-1.0) |
|
|
||||||
| `preferred_style.name` | string | null | Style name or null |
|
| `preferred_style.name` | string | null | Style name or null |
|
||||||
| `preferred_style.description` | string | "" | Custom notes/override |
|
| `preferred_style.description` | string | "" | Custom notes/override |
|
||||||
| `preferred_layout` | string | null | Layout preference or null |
|
| `preferred_layout` | string | null | Layout preference or null |
|
||||||
@@ -97,7 +95,6 @@ watermark:
|
|||||||
enabled: true
|
enabled: true
|
||||||
content: "@myxhsaccount"
|
content: "@myxhsaccount"
|
||||||
position: bottom-right
|
position: bottom-right
|
||||||
opacity: 0.5
|
|
||||||
|
|
||||||
preferred_style:
|
preferred_style:
|
||||||
name: notion
|
name: notion
|
||||||
|
|||||||
@@ -28,15 +28,6 @@ description: Watermark configuration guide for baoyu-xhs-images
|
|||||||
| `bottom-center` | Centered designs | Text-heavy bottom area |
|
| `bottom-center` | Centered designs | Text-heavy bottom area |
|
||||||
| `top-right` | Bottom-heavy content | Title/header in top-right |
|
| `top-right` | Bottom-heavy content | Title/header in top-right |
|
||||||
|
|
||||||
## Opacity Examples
|
|
||||||
|
|
||||||
| Opacity | Visual Effect | Use Case |
|
|
||||||
|---------|---------------|----------|
|
|
||||||
| 0.3 | Very subtle, barely visible | Clean aesthetic priority |
|
|
||||||
| 0.5 | Balanced, noticeable but not distracting | Default recommendation |
|
|
||||||
| 0.7 | Clearly visible | Brand recognition priority |
|
|
||||||
| 0.9 | Strong presence | Anti-copy protection |
|
|
||||||
|
|
||||||
## Content Format
|
## Content Format
|
||||||
|
|
||||||
| Format | Example | Style |
|
| Format | Example | Style |
|
||||||
@@ -51,23 +42,21 @@ description: Watermark configuration guide for baoyu-xhs-images
|
|||||||
1. **Consistency**: Use same watermark across all images in series
|
1. **Consistency**: Use same watermark across all images in series
|
||||||
2. **Legibility**: Ensure watermark readable on both light/dark areas
|
2. **Legibility**: Ensure watermark readable on both light/dark areas
|
||||||
3. **Size**: Keep subtle - should not distract from content
|
3. **Size**: Keep subtle - should not distract from content
|
||||||
4. **Contrast**: Opacity may need adjustment per image background
|
|
||||||
|
|
||||||
## Prompt Integration
|
## Prompt Integration
|
||||||
|
|
||||||
When watermark is enabled, add to image generation prompt:
|
When watermark is enabled, add to image generation prompt:
|
||||||
|
|
||||||
```
|
```
|
||||||
Include a subtle watermark "[content]" positioned at [position]
|
Include a subtle watermark "[content]" positioned at [position].
|
||||||
with approximately [opacity*100]% visibility. The watermark should
|
The watermark should be legible but not distracting from the main content.
|
||||||
be legible but not distracting from the main content.
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Common Issues
|
## Common Issues
|
||||||
|
|
||||||
| Issue | Solution |
|
| Issue | Solution |
|
||||||
|-------|----------|
|
|-------|----------|
|
||||||
| Watermark invisible | Increase opacity or adjust position |
|
| Watermark invisible | Adjust position or check contrast |
|
||||||
| Watermark too prominent | Decrease opacity (0.3-0.5) |
|
| Watermark too prominent | Change position or reduce size |
|
||||||
| Watermark overlaps content | Change position |
|
| Watermark overlaps content | Change position |
|
||||||
| Inconsistent across images | Use session ID for consistency |
|
| Inconsistent across images | Use session ID for consistency |
|
||||||
|
|||||||
Reference in New Issue
Block a user