Vector Graphics
Vector Graphics (Resolution-Independent Graphics)
Vector graphics represent images as mathematical descriptions of geometric shapes, paths, and text rather than pixel grids. They scale to any size without quality loss, making them ideal for logos, icons, and illustrations.
Teknik Detay
Vector formats store shapes as Bezier curves defined by control points. SVG uses XML path data (M, L, C, Z commands), while PDF and EPS use PostScript operators. Rendering requires rasterization at the target resolution.
Ornek
```javascript
// Resize image using Canvas API
const canvas = document.createElement('canvas');
canvas.width = 800;
canvas.height = 600;
const ctx = canvas.getContext('2d');
ctx.drawImage(img, 0, 0, 800, 600);
canvas.toBlob(blob => {
// Download resized image
saveAs(blob, 'resized.png');
}, 'image/png');
```
Ilgili Araclar
C
Compress Image
R
Resize Image
C
Crop Image
R
Rotate Image
F
Flip Image
C
Convert Image
W
Watermark Image
S
SVG to PNG
I
Image to Base64
R
Round Corners
A
Add Border
I
Image Filters
A
Adjust Image
B
Blur Image
S
Sharpen Image
M
Make Square
G
Grayscale Image
S
Sepia Image
P
Pixelate Image
S
Strip Image Metadata