I'm looking for online or free image editing tool that allows you to scale images in the way Photoshop allows by context aware scaling. Simply I want to scale a image horizontally (in x axis) without scaling the image content but filling the added space with the image background color.
Context aware scale image editing
1.9k Views Asked by Hemal senerath rathnayake At
2
There are 2 best solutions below
2
Bonzo
On
I thought the OP was looking for "liquid image rescale" or a similar sounding name but rereading your post probably not. I do not understand why you need "context aware scaling".
Imagemagick can do it but it is a bit basic; it is command line and there is no easy way to protect certain areas: http://www.imagemagick.org/Usage/resize/#liquid-rescale
Gimp has a plugin but I have never used it: http://liquidrescale.wikidot.com/en:examples
Related Questions in PHOTOSHOP
- labeling and saving transparent layer in photoshop
- Writing a custom PSD file with smart objects
- jQuery filter.me .ACV file conversion
- Best way to edit a JPG in Photoshop
- OpenGL GLSL: How to implement the concept of gradient map in photoshop using fragment shader?
- Different QRCode in series of flyer with photoshop
- Photoshop - How to navigate the canvas using Javascript?
- what is the best fastest approach in extracting images in a psd?
- Using Javascript function parameters with onClick in photoshop dialog not working
- How to get inside of this thin white border
- Photoshop dialog controls keyboard shortcuts not working
- Workflow improvement on how to measure pixel distances on screen
- Photoshop script how to add image to a layer
- Is there a script that can transfer text from an excel file into an Adobe design program?
- Python and Photoshop
Related Questions in IMAGE-SCALING
- Image 2x downsampling with Lanczos filter
- Images and media queries
- Android Drawable folders aren't detected?
- Tracking only scaled versions of uploaded images in FineUploader
- Resize existing images in s3 bucket/folder
- Why is my img-responsive class not scaling correctly?
- Inverse transform image in matlab
- imagesc function in Matlab
- Cannot get imagesc to work in Matlab
- How to change axis scale on imagesc in Matlab
- How to draw over a imagesc image in Matlab
- Scaling issue:How to make android actionBar icon rectangular?
- How to scale Bitmaps according to the screen Estate available
- Dynamic re-sizing of images according to the sizes(Same width but different height)
- Keep div aspect ratio when scaling, with inner images
Related Questions in IMAGE-EDITING
- How select an area in QQuickPaintedItem
- Basic image editor (open file, crop, save to new file) in a Java Tapestry web application
- Styling a map with CSS and HTML
- Can the Pixlr API be used to add/edit text?
- PHP and Javascript image editing?
- Merging image with two different image
- How do I view an image in Visual Studio 2022 when coding?
- crop and get rest of the Image in Objective-C
- Changing <QBitmap> / <QImage>'s contrast
- Opacity Or Alpha issue - Different Look in screen and while export in Photos in swift
- Pre-save edit fabric.js PNG image
- Photoshop-like, embeddable web based image editor?
- How to automatically capture images as user moves down the iphone /ipad camera to make a panoroma like picture?
- Re-editing image with same name return only latest changes over original image using PhotoEditor SDK
- Why did my new python edited photo lose brightness?
Related Questions in IMAGE-EDITOR
- Can the Pixlr API be used to add/edit text?
- PHP and Javascript image editing?
- Syncfusion react image editor get image url
- HTML5/Flash image editor to integrate in my website
- ToastUI Image Editor - resize the images according to the container
- Remove object from photo using Expo (React native)
- iOS image editor in swift
- What is the image editor's resolution tool for?
- Free Replacements for Aviary API / Creative Cloud SDK Image Editor?
- Put Text on Image from database while editing image in Canvas
- How to save images from QGraphicsView?
- Open source .NET vector graphics editor
- ASP.net image editor with layering
- InApp Photo Editor ?
- Android studio Cant find exploded-aar directory in project files
Related Questions in IMAGE-ENLARGE
- How to style html tables? - fill cell / enlarge image on hover / color one section
- Containg image when enlarging
- How to enlarge pixels? - Java
- how to enlarge the image in the cell
- Android ImageView fit to Screen onTouch
- HTML CSS image grow
- How to enlarge image on click?
- Is there a way to detect a mouseover in a grid-area of a CSS grid?
- How can I display thumbnails of images in a grid and then open one image in new window using tkinter and python?
- How to loop through getElementsByClass for image expansion
- In Bootstrap open Enlarge image in modal
- Jquery Mobile enlarge images posted through PHP
- Enlarging Image in New Window?
- Context aware scale image editing
- Android: Picasso enlarging Image on Click?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I'm not 100% certain I understand your description, but you can do the following with ImageMagick which is installed on most Linux distros and is available for free for macOS and Windows.
Just in the Terminal, you can take the right-most column of an image and replicate a few hundred times to make the image wider.
So, if you start with this:
and run this:
You'll get this:
Or, you could grab the colour of the pixel at the top-left (or any other) corner and extend the background using that: