claude-prompt-example.txt•985 B
Please convert this SVG to a PNG image with a scale factor of 2 and save it to my downloads folder:
```svg
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200" width="400" height="200">
  <!-- Background -->
  <rect width="400" height="200" fill="#f8f9fa" />
  
  <!-- Colorful shapes -->
  <rect x="50" y="50" width="100" height="100" fill="#4285f4" rx="10" ry="10" />
  <circle cx="250" cy="100" r="50" fill="#ea4335" />
  <path d="M50 150 L150 150 L100 50 Z" fill="#fbbc05" />
  <path d="M250 50 C300 50, 350 100, 300 150 S200 150, 250 50" fill="#34a853" />
  
  <!-- Text -->
  <text x="200" y="30" font-family="Arial" font-size="24" text-anchor="middle" fill="#202124">SVG Example</text>
  <text x="200" y="180" font-family="Arial" font-size="16" text-anchor="middle" fill="#202124">Convert me with MCP!</text>
</svg>
```
Could you also convert the same SVG to a JPG image with 95% quality and a white background?