Questions tagged [image-editing]

Anything related to image editing

Questions related to image editing like modifying, resizing, brightness and color adjustment, white balance, backlight correction, adding text, cropping, filters

173 questions
0
votes
1 answer

Blending transparent colors

I'm developing my own image editor, and I've run into a bit of a snag. I'm stumped as to how other image editors deal with blending transparent colors together. Here's how Photoshop and a few other programs do it: As you can see, it's not a simple…
Will Tice
  • 434
  • 4
  • 17
0
votes
0 answers

Android: Convert Bitmap image to Image giving a look like Marker

I have an Image stored in Bitmap variable image which is in the form of a square-shaped image. Please Help me Out to make the image as shown in line Link For Image of Marker
0
votes
2 answers

What does 'module' object has no attribute 'draw' mean? How do I fix it?

I am new to computer coding. We work with Canopy to do PYTHON and we are doing image modification. I have a 'module' object has no attribute 'draw' error and am not sure how to fix it. I have imported the following: import PIL import os.path …
0
votes
1 answer

JavaScript tool for placing and scaling images

I was wondering if there are any JavaScript tools out there with which you can let the user place and scale one or multiple images on a canvas for example. I know there are tools like cropperjs, cropper or Croppie for image cropping - but I was…
fritzmg
  • 2,494
  • 3
  • 21
  • 51
0
votes
2 answers

Insert text or Edit Image in iPhone

I am stuck with this problem and not getting any idea about this.? I do have some images in the application, and I want to insert some text in to that images which I take as input from the user? I don't have any idea how to accomplish this task? Is…
Arpan
  • 78
  • 5
0
votes
1 answer

How does e commerce Websites edit their product pic for showing on front

I am Wounding How these e commerce Website Edit their product pic for the front page for example This is an product image from flipkart.com an online store This is Photo Taken by the camera In Picture 1: There is Some blur effect how did they do…
0
votes
1 answer

How to draw a circle on top of an image

My application takes an image from the camera, saves it and then displays it on an ImageView, but the next step is to place a circle on top of the displayed image when the user touches the screen, and then save the "modified image". Kinda like a…
mrOak
  • 193
  • 3
  • 12
0
votes
1 answer

Hole filling of color pictures

I would like to perform some image editing by removing annoying element on these image such as electric poles, grids, ... (pic. 1) The amount of edits to perform is quite significant and I wonder if it is possible to automatize the refilling (pic.…
JeanJouX
  • 2,555
  • 1
  • 25
  • 37
0
votes
1 answer

JQuery/Javascript sources allowing "image template" text editing

I'm looking for any code resources that make it possible to navigate between images that act as a "image template" picker, and then having fields off to the side where you can place text, which gets superimposed on the image-template, and allows the…
LatentDenis
  • 2,839
  • 12
  • 48
  • 99
0
votes
2 answers

How to add an effect on QGraphicsView?

I'm trying to add a blur effect on my graphicsView but i have to trigger the action twice to apply the effect.The first time i trigger it, it applies the effect on the graphicsView's borderline and on the second trigger it applies it on the…
0
votes
1 answer

PDF editing web-application with drag and drop

I want to create some webapp for editing image with drag and drop (remove logo, and put an other one, editing the text in the image etc). I explain, I create communication poster, but some people don't really like, the slogan on the poster, or they…
Nathan Meyer
  • 312
  • 7
  • 18
0
votes
0 answers

Drop shadows to every sides of a picture

I tried, with imagemagick, to simulate an upper light spot adding drop shadows to every sides of a png picture using the following code: #!/usr/bin/env sh imageshadow() { out=${1%.*}-shadow.${1#*.} in=$1 if [ ! -z $2 ]; then convert $in…
0
votes
1 answer

Redirect "Add To Cart" Button to different custom page In Magento / Add new Button in Product Page in Magento

I am working on Magento website, I want to add my image editor after product page before it add to cart and checkout page. I want to rename "Add To Cart" Button to "Image Editor" and then it redirects to my editor page and after editing image it…
Rahul
  • 763
  • 1
  • 12
  • 45
0
votes
2 answers

Modify / Update a JPEG image programmatically to add a text

I was wondering if there is an image library in .NET which would allow me to open a JPEG image on the fly and add a text field (for ex: Software version) Basically I should be able to send the software version to this library. And this image based…
this-Me
  • 2,139
  • 6
  • 43
  • 70
0
votes
1 answer

Swift: Adding text to image does not work

I'm trying to edit an image by adding text to it, but the code I got from this post does not work: How to write text on image in Objective-C (iOS)? My image-editing code looks like this: func addTextToImage(image:UIImage, text:NSString, pointof:…
martin
  • 1,894
  • 4
  • 37
  • 69