
Product
A Fresh Look for the Socket Dashboard
We’ve redesigned the Socket dashboard with simpler navigation, less visual clutter, and a cleaner UI that highlights what really matters.
gatsby-plugin-watermark
Advanced tools
A Gatsby plugin that automatically adds configurable watermarks to all images during the build process. Supports both text and image watermarks.
A Gatsby plugin that automatically adds configurable watermarks to all images during the build process. Supports both text and image watermarks.
npm install gatsby-plugin-watermark
# or
yarn add gatsby-plugin-watermark
Add the plugin to your gatsby-config.js
:
module.exports = {
plugins: [
'gatsby-plugin-sharp',
'gatsby-source-filesystem',
{
resolve: 'gatsby-plugin-watermark',
options: {
// Required: Specify the type of watermark
type: 'text', // or 'image'
// Text watermark options
text: 'Your Watermark Text',
fontSize: 32,
fontColor: '#ffffff',
// Image watermark options
imagePath: '/path/to/watermark.png', // Required if type is 'image'
scale: 0.2, // Scale factor for image watermark (0-1)
// Common options
opacity: 0.5,
position: 'bottom-right', // Can be: 'top-left', 'top-right', 'bottom-left', 'bottom-right'
margin: 20,
},
},
],
}
The plugin will automatically process all images in your Gatsby project and add watermarks according to your configuration. The watermarked images will be saved alongside the original images with a "watermarked-" prefix.
The plugin accepts the following configuration options:
type
(String): The type of watermark ('text' or 'image')opacity
(Number): The opacity of the watermark (0-1) (default: 0.5)position
(String): The position of the watermark (default: 'bottom-right')
margin
(Number): The margin from the edges in pixels (default: 20)text
(String): The watermark text to display (default: 'Watermark')fontSize
(Number): The size of the watermark text in pixels (default: 32)fontColor
(String): The color of the watermark text in hex format (default: '#ffffff')imagePath
(String): Path to the watermark image file (required if type is 'image')scale
(Number): Scale factor for the watermark image (0-1) (default: 0.2){
resolve: 'gatsby-plugin-watermark',
options: {
type: 'text',
text: '© 2024 Your Company',
fontSize: 32,
fontColor: '#ffffff',
opacity: 0.5,
position: 'bottom-right',
margin: 20,
},
}
{
resolve: 'gatsby-plugin-watermark',
options: {
type: 'image',
imagePath: './src/images/logo.png',
scale: 0.2,
opacity: 0.5,
position: 'bottom-right',
margin: 20,
},
}
The plugin automatically:
You can query watermarked images using GraphQL:
query {
allFile(filter: { internal: { mediaType: { regex: "/image/" } } }) {
nodes {
id
absolutePath
}
}
}
MIT
FAQs
A Gatsby plugin that automatically adds configurable watermarks to all images during the build process. Supports both text and image watermarks.
The npm package gatsby-plugin-watermark receives a total of 12 weekly downloads. As such, gatsby-plugin-watermark popularity was classified as not popular.
We found that gatsby-plugin-watermark demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
We’ve redesigned the Socket dashboard with simpler navigation, less visual clutter, and a cleaner UI that highlights what really matters.
Industry Insights
Terry O’Daniel, Head of Security at Amplitude, shares insights on building high-impact security teams, aligning with engineering, and why AI gives defenders a fighting chance.
Security News
MCP spec updated with structured tool output, stronger OAuth 2.1 security, resource indicators, and protocol cleanups for safer, more reliable AI workflows.