Image watermark flutter pacakge

Overview

image_watermark

Image watermark is flutter pacakge to add text watermark and image watermark on image,you can customize the position of watermark and color. Based on Image pacakge.
Check on pub.dev: https://pub.dev/packages/image_watermark

Example code

Add watermark text at center of image,parameter image bytes and string and it returns image bytes

var watermarkedImg = await image_watermark.addTextWatermarkCentered(imgBytes,'watermarkText');
var watermarkedImgBytes = await image_watermark.addTextWatermarkCentered(
                        imgBytes, ///image bytes
                        watermarkText, ///watermark text
                        color: Colors.black, ///default : Colors.white
                      );

Change the position of watermark

var watermarkedImg = await image_watermark.addTextWatermark(
                          imgBytes,             ///image bytes
                          'watermarkText',      ///watermark text
                          20,                   ///position of watermark x coordinate
                          30,                   ///y coordinate
                          color: Colors.green, ///default : Colors.white
                        )

Add image as watermark on image

watermarkedImgBytes = await image_watermark.addImageWatermark(imgBytes,watermarkImgByte);
watermarkedImgBytes = await image_watermark.addImageWatermark(
                              imgBytes, //image bytes
                              imgBytes2,//watermark img bytes
                              imgHeight: 200,   //watermark img height
                              imgWidth: 200,    //watermark img width
                              dstY: 400,
                              dstX: 400);

You might also like...

A showcase app for displaying image lists, developed on Flutter.

A showcase app for displaying image lists, developed on Flutter.

flutter_showcase_app Pixabay: A Flutter demo application. A showcase app for displaying image lists, developed on Flutter. Uses BLOC pattern, SQFLite

Nov 25, 2022

A chat app built on Flutter with firebase authentication and image sharing capability.

A chat app built on Flutter with firebase authentication and image sharing capability.

Flutter Chat App A one-to-one chat app built on Flutter with firebase authentication and image sharing capability. For help getting started with Flutt

Dec 27, 2022

Flutter image filters plugin

Flutter image filters plugin

filter A flutter plugin project to apply images filters to file image natively and efficiently. WARNING!! Implemented in Android PR are welcomed for I

May 28, 2021

A multifunctional Flutter image widget

A multifunctional Flutter image widget

OctoImage An image library for showing placeholders, error widgets and transform your image. Recommended using with CachedNetworkImage version 2.2.0 o

Dec 6, 2022

A flutter package uses native implementations to resize an image

fast_image_resizer This package uses native implementations to resize an image.

Dec 20, 2021

Flutter plugin, support android/ios.Support crop, flip, rotate, color martix, mix image, add text. merge multi images.

Flutter plugin, support android/ios.Support crop, flip, rotate, color martix, mix image, add text. merge multi images.

image_editor The version of readme pub and github may be inconsistent, please refer to github. Use native(objc,kotlin) code to handle image data, it i

Jan 3, 2023

Image Classification Flutter App

Image Classification Flutter App

Image Classification Flutter App Image Classification Example.

Dec 23, 2021

A cached Flutter ImageProvider for Firebase Cloud Storage image objects

🔥 Firebase Image Provider A cached Flutter ImageProvider for Firebase Cloud Sto

Nov 2, 2022

Flutter package to render html as widgets that supports hyperlink, image, audio, video, iframe and many other tags.

Flutter package to render html as widgets that supports hyperlink, image, audio, video, iframe and many other tags.

HtmlWidget monorepo This repo contains the source code for everything HtmlWidget-related. Name Link flutter_widget_from_html_core flutter_widget_from_

Jan 6, 2023
Comments
  • Package Update

    Package Update

    Hi! I took some time to help, I have this package in use and I have been wanting to make some improvements for a long time.

    They were basic changes:

    • SDK version
    • Documentation
    • README in Spanish

    and more.

    opened by OscarTinajero117 1
  • Chinese watermark not shown中文水印不显示

    Chinese watermark not shown中文水印不显示

    I run the example project, it works fine when I put some character workmarks ,for example,'abc'. But when the parameter contains Chinese words, the Chinese parts did not show on the result. 1 2 我运行了示例程序,如果输入英文字母则正常水印,如果输入中文字母则中文部分不显示

    opened by 244226077 0
Owner
Saurabh Waghmare
Saurabh Waghmare
Form builder image picker - Form builder image picker for flutter

form_builder_image_picker Field for picking image(s) from Gallery or Camera for

Ferri Sutanto 0 Jan 28, 2022
Flutter Image add drag sort, Image add drag sort, support click event, delete, add, long press drag sort.

flutter_image_add_drag_sort Flutter Image add drag sort, Image add drag sort, support click event, delete, add, long press drag sort, support video fi

null 5 Jun 23, 2020
Dart library for decoding/encoding image formats, and image processing.

image Overview A Dart library providing the ability to load, save and manipulate images in a variety of different file formats. The library is written

Brendan Duncan 907 Dec 27, 2022
Album Image is based in photo_manager package and has the same concept as image_picker but with a more attractive interface to choose an image or video from the device gallery, whether it is Android or iOS

Album Image is based in photo_manager package and has the same concept as image_picker but with a more attractive interface to choose an image or vide

Phuong Vu 2 Oct 13, 2022
Flutter profile ui - Round Image Profile UI For Flutter

round_image_page A new Flutter project.

Mahfozur Rahman Asif 2 Oct 21, 2022
Flutter plugin for selecting images from the Android and iOS image library, taking new pictures with the camera, and edit them before using such as rotation, cropping, adding sticker/text/filters.

advance_image_picker Flutter plugin for selecting multiple images from the Android and iOS image library, taking new pictures with the camera, and edi

Weta Vietnam 91 Dec 19, 2022
Flutter Package used to 'edit' basics aspects [Brightness, Contrast, Saturation, etc...] from a widget or image.

on_image_matrix on_image_matrix is a Flutter Package used to 'edit' basics aspects [Brightness, Contrast, Saturation, etc...] from a widget or image.

Lucas Josino 6 Oct 23, 2022
A Flutter plugin that provides assets abstraction management APIs without UI integration, you can get assets (image/video/audio) on Android, iOS and macOS.

photo_manager Photo/Assets management APIs for Flutter without UI integration, you can get assets (image/video/audio) from Android, iOS and macOS. 提供相

FlutterCandies 526 Jan 4, 2023
A flutter plugin to crop image on iOS and Android.

Image Cropping plugin for Flutter A flutter plugin to crop image on iOS and Android. The plugin comes with a Crop widget. The widget renders only imag

Volodymyr Lykhonis 292 Dec 27, 2022