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
1
vote
1 answer

Best library for image cropping in SwiftUI iOS?

I am working on iOS SwiftUI app Image editor, for image cropping I used the Mantis library but I faced one problem , when I pick image from gallery its working perfectly but getting app crashed when image is picked through camera .Getting this error…
1
vote
1 answer

Right sequence of applying Color Adjustments to Image

I am working on Video Editing application for iOS powered with Metal. I'm implementing Filters and Adjustments for Videos and Images. For now I have all appropriate shaders to change Video's or Image's brightness, exposure, contrast, saturation, hue…
Max Adamyan
  • 177
  • 1
  • 12
1
vote
1 answer

How to correctly convert a resized image from opencv to pyqt5?

Goal: I am trying to display an image using PyQt5 edited using OpenCV. The above image shows a side by side comparison of my expected output (Shown from a openCV Window) and the actual output displayed in a PyQt5 Label Pixmap. The picture shows…
Emmanuel
  • 156
  • 6
1
vote
2 answers

How to edit an image with absolute path?

I have use the pesdk library to edit an image. public static int GALLERY_RESULT = 2; private void selectImgtoEdit() { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(path)); startActivityForResult(intent,…
Dan Leo
  • 33
  • 6
1
vote
1 answer

Add sticker and resize with Pinch in or Pinch out in react Native: Picture Editing Application

I'm Trying to built a picture editing application and so far im able to select a picture from gallery and able to add stickers on it (e.g hair styles, eyebrows, nose etc) but im not able to resize these stickers according to picture i dont know…
Anjum
  • 11
  • 1
1
vote
2 answers

Is it possible to convert 4:3 pictures to 16:9 using Python (2.7)

I have been searching the net for a while, but to no avail! Is there an image editing library for python that will allow me to convert 4:3 pictures to 16:9? Any information and/or links are much appreciated! Thanks!
Scholfield
  • 23
  • 2
1
vote
1 answer

Application/script for merging images, applying color, black & white filter in batch?

I'm making achievements for my game, and I would like to make an automated process to save a lot of time instead of doing it manually. (I'm using Windows) The inputs of this process would be one rectangular opaque background image (i.e. 200x200…
Tudvari
  • 2,715
  • 2
  • 14
  • 33
1
vote
0 answers

HTML5 Canvas eraser tool without overdraw image load to canvas

I try to make a simple image editor for load image in a particular person's bill. I want to draw a line-loaded image(i want to cut some bill claim items using the pen tool, I gave the option eraser for editing purposes). I create canvas load images…
Code Kris
  • 447
  • 3
  • 19
1
vote
0 answers

Ffmpeg program to stitch image side by side

So I have about 90-100 images which are of the resolution 1080x1920px. I want to make a program in ffmpeg that will join them as in stitch them side by side(horizontally), such that all the images combine to become a wide image. Can someone pls help…
1
vote
1 answer

How to insert vector graphics (SVG) to a raster image such as JPG/TIF programmatically (Python/JS/C++)?

I need a programmatic way to embed a clipping-path (saved as SVG file) to another image such as JPG/TIF/PSD. Using a tool such as Photoshop, this can be done easily and the path will be inserted in the image 8BIM profile, but it seems there is no…
Elras
  • 19
  • 1
  • 4
1
vote
0 answers

How does Google Photos app's "auto" filter works?

I am making an image enhancement app using CamanJS. And I want to know-how does the auto image filter works in google photos. Is there a way I can replicate it or is there any google API that is available. I have tried searching but not found any…
1
vote
2 answers

Python OpenCV image editing: Faster way to edit pixels

Using python (openCV2, tkinter etc) I've created an app (a very amateur one) to change blue pixels to white. The images are high quality jpgs or PNGS. The process: Search every pixel of an image and if the 'b' value of BGR is higher than x, set…
Dayaan Salie
  • 21
  • 1
  • 6
1
vote
1 answer

Batch Resize Photos While Maintaining the Aspect Ratio AND Fitting to a specific pixel size

I am looking to batch resize pictures to a specific pixel size while maintaining the aspect ratio. Is their a way that the picture aspect can be preserved and the rest of the space can be filled in with white? For example, I resize an image to 200 x…
1
vote
1 answer

TinyCrayon Similar

I'm trying to develop app to make image with full transparency. Mainly I need it smart selection just like TinyCrayon. So how can I make similar algorithm to select the selected object? this image to become like this image using selection…
Developer So far
  • 353
  • 1
  • 11
1
vote
0 answers

Applying CSS filters to selected regions in an image

I'm trying to implement a simple image editing app with some basic features. I'm currently using a SVG as my canvas and populating it with a background image since I will need the ability to add shapes, text etc. which I believe would be easier to…
arjun010
  • 129
  • 1
  • 2
  • 12