Translate AI & Automation + CLI reference to all 6 locales
48 translated pages (de, es, fr, it, pl, ru) for the Programmable
section: overview, AI Chat, Collaboration, JSX Renderer, CLI
(inspecting, exporting, analyzing, scripting).
CLI reference and MCP server pages copied as-is (mostly code/tables).
2026-03-08 12:35:03 +00:00
|
|
|
|
---
|
|
|
|
|
|
title: Eksportowanie
|
|
|
|
|
|
description: Renderuj pliki .fig do PNG, JPG, WEBP, SVG lub JSX z klasami Tailwind.
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
# Eksportowanie
|
|
|
|
|
|
|
|
|
|
|
|
Eksportuj projekty z terminala — obrazy rastrowe, wektory lub kod JSX.
|
|
|
|
|
|
|
|
|
|
|
|
## Eksport obrazów
|
|
|
|
|
|
|
|
|
|
|
|
```sh
|
2026-05-29 12:56:52 +00:00
|
|
|
|
openpencil export design.fig # PNG (domyślnie)
|
|
|
|
|
|
openpencil export design.fig -f jpg -s 2 -q 90 # JPG w 2×, jakość 90
|
|
|
|
|
|
openpencil export design.fig -f webp -s 3 # WEBP w 3×
|
|
|
|
|
|
openpencil export design.fig -f svg # SVG wektor
|
Translate AI & Automation + CLI reference to all 6 locales
48 translated pages (de, es, fr, it, pl, ru) for the Programmable
section: overview, AI Chat, Collaboration, JSX Renderer, CLI
(inspecting, exporting, analyzing, scripting).
CLI reference and MCP server pages copied as-is (mostly code/tables).
2026-03-08 12:35:03 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Opcje:
|
|
|
|
|
|
|
|
|
|
|
|
- `-f` — format: `png`, `jpg`, `webp`, `svg`, `jsx`
|
|
|
|
|
|
- `-s` — skala: `1`–`4`
|
|
|
|
|
|
- `-q` — jakość: `0`–`100` (tylko JPG/WEBP)
|
|
|
|
|
|
- `-o` — ścieżka wyjściowa
|
|
|
|
|
|
- `--page` — nazwa strony
|
|
|
|
|
|
- `--node` — ID konkretnego węzła
|
|
|
|
|
|
|
|
|
|
|
|
## Eksport JSX
|
|
|
|
|
|
|
|
|
|
|
|
Eksportuj jako JSX z klasami narzędziowymi Tailwind:
|
|
|
|
|
|
|
|
|
|
|
|
```sh
|
2026-05-29 12:56:52 +00:00
|
|
|
|
openpencil export design.fig -f jsx --style tailwind
|
Translate AI & Automation + CLI reference to all 6 locales
48 translated pages (de, es, fr, it, pl, ru) for the Programmable
section: overview, AI Chat, Collaboration, JSX Renderer, CLI
(inspecting, exporting, analyzing, scripting).
CLI reference and MCP server pages copied as-is (mostly code/tables).
2026-03-08 12:35:03 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Wynik:
|
|
|
|
|
|
|
|
|
|
|
|
```html
|
|
|
|
|
|
<div className="flex flex-col gap-4 p-6 bg-white rounded-xl">
|
|
|
|
|
|
<p className="text-2xl font-bold text-[#1D1B20]">Card Title</p>
|
|
|
|
|
|
<p className="text-sm text-[#49454F]">Description text</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Obsługuje również `--style openpencil` dla natywnego formatu JSX (zobacz [Renderer JSX](../jsx-renderer)).
|
|
|
|
|
|
|
|
|
|
|
|
## Miniatury
|
|
|
|
|
|
|
|
|
|
|
|
```sh
|
2026-05-29 12:56:52 +00:00
|
|
|
|
openpencil export design.fig --thumbnail --width 1920 --height 1080
|
Translate AI & Automation + CLI reference to all 6 locales
48 translated pages (de, es, fr, it, pl, ru) for the Programmable
section: overview, AI Chat, Collaboration, JSX Renderer, CLI
(inspecting, exporting, analyzing, scripting).
CLI reference and MCP server pages copied as-is (mostly code/tables).
2026-03-08 12:35:03 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Tryb żywej aplikacji
|
|
|
|
|
|
|
|
|
|
|
|
Pomiń plik, aby eksportować z uruchomionej aplikacji:
|
|
|
|
|
|
|
|
|
|
|
|
```sh
|
2026-05-29 12:56:52 +00:00
|
|
|
|
openpencil export -f png # zrzut ekranu bieżącego płótna
|
Translate AI & Automation + CLI reference to all 6 locales
48 translated pages (de, es, fr, it, pl, ru) for the Programmable
section: overview, AI Chat, Collaboration, JSX Renderer, CLI
(inspecting, exporting, analyzing, scripting).
CLI reference and MCP server pages copied as-is (mostly code/tables).
2026-03-08 12:35:03 +00:00
|
|
|
|
```
|