linkedin-content-image-typeslisted
Install: claude install-skill puretechnyc/purebrain-skills
# LinkedIn Content Image Types
## When to Use
When generating images for LinkedIn posts. Each post type has a specific image format.
## Post Type 1: Quote Card (Twitter Repost Style)
- **Size**: 1080x1350 (portrait, 4:5)
- **Design**: Black background, headshot in accent-bordered circle, social icon centered at bottom of circle, name + handle, quote text in bold sans-serif, "FOLLOW FOR MORE" at bottom
- **Use for**: Hot takes, opinions, one-liners, motivational insights
- **Font**: Bold sans-serif for quote text, extra-bold for name
### How to Generate
Use Python with Pillow (PIL):
```python
from PIL import Image, ImageDraw, ImageFont
def create_quote_card(quote: str, name: str, handle: str, headshot_path: str, output_path: str):
"""Create a LinkedIn quote card image."""
img = Image.new('RGB', (1080, 1350), color='#000000')
draw = ImageDraw.Draw(img)
# Load headshot and create circular mask
headshot = Image.open(headshot_path).resize((200, 200))
mask = Image.new('L', (200, 200), 0)
mask_draw = ImageDraw.Draw(mask)
mask_draw.ellipse((0, 0, 200, 200), fill=255)
# Paste headshot with circular mask
img.paste(headshot, (440, 100), mask)
# Draw accent border circle
draw.ellipse((435, 95, 645, 305), outline='#2a93c1', width=3)
# Add name and handle
draw.text((540, 330), name, fill='white', anchor='mt')
draw.text((540, 360), handle, fill='#888888', anchor='mt')
# Add quote text (centered, word-wrapped)
#