| Raster Image | Vector Image | |
|---|---|---|
| FORMATS | .jpg .png .tif .gif .bmp | .ai .eps .svg |
| COMPOSITION | Pixels (small squares of color) |
Mathematical equations that define points, lines, and curves |
| SCALABILITY | Images appear blurry or jagged when enlarged | Images can be scaled infinitely with no loss of quality |
| BEST USES | Photographs, images with intricate shading and tonal variations | Logos, icons, typography, simple illustrations |
| FILE SIZE | Typically larger, especially when the resolution is high | Typically smaller, since data is mathematical rather than pixels |
The Toolbox is your primary station for selecting the core manipulation tools.
This context-sensitive panel is perhaps the most important for precision. It displays the specific settings for whichever tool is currently selected in the Toolbox.
This area manages your global file navigation.
The central area where your actual image resides.
This dockable dialog allows you to select the "texture" of your tools.
This is the most critical panel for non-destructive editing. It allows you to manage the different layers of your image, which can be thought of as transparent sheets stacked on top of each other.
Located on the far left, this contains the creation and editing tools.
This area is split into two functional levels.
The main stage for your vector artwork.
This is where your functional panels live.
A vertical strip of shortcuts for common global actions.
The quick-access bar for applying colors.
To ensure the image size does not exceed 1-2 MB, use this website: FreeConvert Image Compressor.
Here are the steps to compress an image using the FreeConvert Image Compressor website:
To compress videos and ensure size reduction and encoding quality: I use ffmpeg
ffmpeg is a command-line tool that can be used to convert, compress, and manipulate audio and video files. It is a powerful and versatile tool that supports a wide range of formats and codecs. ffmpeg can be used to compress videos by reducing their resolution, bitrate, or changing the codec used for encoding. It is available for Windows, macOS, and Linux operating systems.
Here are the steps to download and use ffmpeg. I used this tutorial as a reference:
To add the ffmpeg bin folder to your system's PATH environment variable, click "Browse" and select the bin folder inside the ffmpeg folder you extracted earlier. Then click "OK" to save the changes.
ffmpeg -i input.mp4 -vcodec libx264 -crf 25 -preset medium -vf
scale=-2:1080 -acodec libmp3lame -q:a 4 -ar 48000 -ac 2
output_compressed.mp4
Replace input.mp4 with the name of your original video file and output_compressed.mp4 with the desired name for the compressed video file. The -crf value controls the quality of the output video (lower values result in higher quality and larger file sizes, while higher values result in lower quality and smaller file sizes).
As you can see, the compressed video is significantly smaller while maintaining good quality.
To ensure the video size does not exceed 5 MB, use this website: FreeConvert Video Compressor.
Use the same steps as the image compressor, but choose a video file instead of an image.