GIMP :: Batch Conversion Of Images

Jan 25, 2013

I need to convert from bitmap images to PNGs with the command line. I've tried looking into script-fu, but lisp is one of those languages I could never figure out.

I've tried using imagemagick, but it did not properly convert the images. The images are apparently 32bit Windows Bitmap V3 files with an alpha channel; according to a page I found on google, imagemagick will not preserve the alpha channel in this particular case. I don't know for certain if that's the actual reason why imagemagick isn't working, but it definitely isn't working. It does, however, work if done manually in gimp.

This is going to be part of a python script, so I need it to convert a specific bitmap file rather than all the ones in a directory.

View 6 Replies


ADVERTISEMENT

Paint Shop Pro :: Batch Conversion - Edit Images For Hue And Saturation

Jul 26, 2013

I have a set of around 100 images which I need to edit for hue and saturation. All are similar. Can I batch convert these with PSP X3?

View 2 Replies View Related

CorelDRAW Graphics Suite X6 :: Batch Process - Conversion Of Images From TIFF To CPT

Jun 17, 2012

I am having issues with the batch process function with X6 photopaint.

that is a simple conversion of 20 or more images from TIF to CPT. i get the message

"Images failed to load. Some formats are not supported for batch processing". I have never encountered this problem before. 

View 4 Replies View Related

GIMP :: How To Batch Colorize Images

May 11, 2012

I am starting a decal business and i have jpg's of all the decal designs in black on a white background. I need to batch colorize a bunch of images, i figured out how to do it individually and save but i need to colorize all the images in a folder and save with a different name. i found a great script to batch convert jpgs to pngs, and am trying to edit it to work.

i think just the line in red needs to be written correctly.

(define (colorize it DirectoryName)
(let*
(
(fileExtension ".jpg") ; we are looking for .jpg files
(varFileList (cadr (file-glob (string-append DirectoryName DIR-SEPARATOR "*" fileExtension) 1) ) ) ; find them all
[code]........

View 4 Replies View Related

GIMP :: Curves Spline Batch On Set Of Images (2011)

Feb 10, 2009

I am attempting to set up a batch that automatically runs gimp-curves-spline on a set of images. However, I have never used Scheme before and therefore am not sure why my script is returning "batch command experienced an execution error"

Here is the command I am using to call the script(via a windows .bat file)

gimp-2.6.exe -i --verbose -b "(color-curve "C:\gimpbatchtest\*.tiff")" -b "(gimp-quit 0)"

And the script itself:

(define (color-curve pattern) (let* ((filelist (cadr (file-glob pattern 1))))
(while (not (null? filelist)) (let* ((filename (car filelist))
(image (car (gimp-file-load RUN-NONINTERACTIVE filename filename)))
(drawable (car (gimp-image-get-active-layer image))))
(gimp-curves-spline RUN-NONINTERACTIVE image HISTOGRAM-VALUE 3 '(0 0 64 200 128 46))
(gimp-file-save RUN-NONINTERACTIVE image drawable filename filename)
(gimp-image-delete image)) (set! filelist (cdr filelist)))))

View 6 Replies View Related

GIMP :: How To Batch Rename About 100 Of Images To Prepend 0 To File Name

Jun 21, 2013

I have about 160-ish images I scanned in as .tif's (my scanner offers .bmp, .jpg, .png, and .tif for saving scanned images as) @ 300-dpi. I'd like to batch export them all to .xcf (for future working with) and .png (I know I could have chose png to start but I thought .tif would be the better choice as a first format). Is it possible to do this with a shell-script? I'm fairly certain I could concoct something to .tif -> .png using ImageMagick (I don't think it supports .xcf) but I'd like to use The GIMP for the whole process if possible, and I'd rather not do it by hand. As it is I'm going to have to figure out how to batch-rename (well, I know how I'm going to do it, a shell script, but how to write it is going to be the tough part for me) about 100 if the images to prepend a 0 to the file name (I started with a two-digit numbering system not realizing I had so many images and would like to keep all the names listing properly on FreeBSD).

Anyway, If such a shell export-to-xcf-and-png script is even possible (I really, really do not want to do this manually).

View 6 Replies View Related

GIMP :: Batch Process Of Converting JPG Or TIFF Images From RGB To CMYK?

Sep 20, 2012

Is there a way to do batch process of converting .jpg or .tif images from RGB to CMYK?

View 2 Replies View Related

GIMP :: Automatically (batch) Replace A Colour In Hundreds Of Images?

Oct 2, 2013

I have hundreds of images that all have the same watermark (more or less but not exactly in the same place). It can easily be removed with the paint bucket with the default settings, the watermark is light grey, the pictures (JPGs) are black and white (a scanned book). But the sheer number of images makes it a gigantic effort to do it by hand.

View 6 Replies View Related

Photoshop :: Batch Conversion Action

Sep 30, 2003

I'm using Photoshop 7.01. I have a bunch of 16-bit TIFFs that I want to batch convert to 8-bit JPEG FINE.

I created a manual action, which works fine, hook it up to F2 and open up 50 tiffs at the same time. Start hitting F2 and the files disappear and I end up with a nice bunch of jpegs.

Now I want to automate it, so I create a new action.

Open TIFF

Change to 8-bit

Save as jpeg

Close

When I run a batch, choose a source folder and target folder, and kick it off, I see all the files open and close, but only the first one (used in my example to create the action) ends up as a jpeg, followed by a bunch of TIFFs.
As far as I can tell, the action opens all the files one after the other, but it always saves the same file.

So, in my output folder, I get 1 JPEG followed by 250 different TIFFs, but the JPEG always appears on my screen for a split second during the save sequence, so it looks like it is being saved 250 times...

View 4 Replies View Related

AutoCAD Inventor :: Batch DWG To IDW Conversion

Mar 21, 2013

It's possible to do bach IDW to DWG conversion, but autodesk doesn't provide a tool to do the opposite:

Inventor's DWG to IDW

View 1 Replies View Related

AutoCAD Inventor :: Batch IDW To DWG Conversion

Nov 1, 2012

I have about 500+ idws that has to be converted to dwg. No problem I thought... just use the task scheduler and create a task (Convert IDW to DWG) to do it.

That works.... but there is a small problem. The DWG that it saves has the data in paper space.  Of coarse, the customer requires it to be in Model Space.

Is there a way to do this with the Task Scheduler? or some other way, short of manually opening/saving each idw. I don't own KwikBatch Runx64 and was hoping we could do this without purchasing something else.

View 3 Replies View Related

Photoshop :: CS5 - Batch (actions) Conversion Of PSD To JPEG?

Sep 26, 2013

Up until a month or so ago, using photoshop CS5 - windows,  a batch psd conversion of nummerous files say fred1. psd through fred10.psd gave me fred1 jpeg through fred10.jpeg. I saveconversions to a dump jpeg folder on another drive where there are also, dump psd and dump tiff with tiff not being much used.
 
Using actions, the first conversion of a series will be fred.jpeg but thereafter it will be fred1 copy.jpeg through fred10 copy .jpeg. No big deal for a few files as the word copy can be deleted. However, if a jpeg file say fred.jpeg needs to be updated in say a slide show or web site then the new conversion of the updated file as fred copy.jpeg causes identity problems.
 
how can I return to the situation where fred.psd becomes fred.jpeg and not fred copy.jpeg. This does not seem to happen for individual conversions the manual way. I tried to convert to jpeg 2000 but the same happened. I'm not sure about jpeg 2000 and how it would work if taking to a phot processor for "photographic" prints.

View 6 Replies View Related

Paint Shop Pro :: X4 - A File Will Not Go Away At Batch Conversion

Oct 16, 2011

Whenever I open the batch conversion window a file always appears in the main file list window; I have to manually remove it (pressing clear) before using the browse button.

View 3 Replies View Related

Photoshop :: Batch File Size Conversion

Jun 19, 2009

I have an older version of Photoshop, (7.0), but I'm sure the Batch Conversion Process is similar with all versions. I have a folder of photos, (large file sizes), I'd like to reduce each file size to a little bigger than a Thumnail size. This is hopefully something I can do bysetting the same parameters to all the photos. Here's what I've figured out (so far)FileAutomateBatchChoose Source FolderChoose Destination Folder That's about it - when I choose both folders, I can't seem to pull up the parameters to reduce the file sizes.

View 7 Replies View Related

Photoshop :: Batch Conversion Of All Photos To 8x6 Ratio

Jan 19, 2006

I have a folder full of images and I'd like them all to be in the 8x6 ratio, with white as the background if any canvas size needs to be changed. I can do a batch and make every picture a canvas size of 800x600, but if the original is 1100x240 that doesn't help me much, I'll loose alot of the image's width.

So I just want to convert the image's canvas size to be in the ratio of 8x6. Is this possible with Photoshop CS or Photoshop CS2?

View 2 Replies View Related

Photoshop :: Batch Image Resolution Conversion

Mar 11, 2004

i am running photoshop 6.0.1 on win2000.

I need to know how to batch convert many tif images from 200 dpi to 300 dpi.

do i need to modify a .atn file? is there a plug-in or something?

View 2 Replies View Related

Photoshop :: PCD Conversion - Batch Convert To TIFF Format?

Apr 2, 2012

I use PS CS5 and LR4 on my Mac. I also have the prior versions of both on the Mac, too. I run the SL OS.
 
Here's my question: I have about 500 images in .PCD and I want to batch convert them to .TIFF format. Is there a plug-in I can use or should I go to a third party app?

View 1 Replies View Related

Photoshop :: Batch Resizing And Conversion Of JPEG To GIFs

Aug 4, 2004

Is it possible to resize a batch of jpegs and also to do a batch conversion of jpegs to gifs,to save time?

View 4 Replies View Related

Photoshop Elements :: Transparency Lost In Batch Conversion?

Oct 24, 2012

I've tried to convert several files using "Process multiple files" in Photoshop Elements 10. Input files are CMYK psd files with one layer and transparent background. They should be resized and converted to PNG. It works excepting the transparency in the PNG files is missing - the background is white instead. The conversion works however if I open a single file, convert it to RGB after prompt and save it as PNG. The background is transparent as it should.
 
So why my pngs are not transparent  when using batch conversion?

View 12 Replies View Related

Photoshop Elements :: Batch PSD Image Conversion Into JPEGs In 10 Or 11?

Feb 27, 2014

I want to batch convert some .psd images  into jpegs in pse 10 or 11. I know you can batch convert for image resizing,but don"t see the ability to convert images from one format into another. 

View 3 Replies View Related

CorelDRAW Graphics Suite X5 :: Batch Conversion Of Specific Colors?

Aug 24, 2011

In 2006 I started a vector-based comic using CorelDraw, made for posting on the web in RGB. Over the years I've made the transition to a more CMYK-friendly palette that works on the web, though a handful of heritage characters still have the old RGB profiles. I'm looking to do a book collection now and, as such, want to convert these characters' specific colors to their fitting CMYK counterparts.

Is there a batch process that allows me to convert a specific handful (maybe 2 dozen) colors RGB --> CMYK across a number of files? I'm looking at hundreds of pages of artwork here, so even Corel's Object Find/Replace would be a tedious slough.

View 9 Replies View Related

AutoCAD 2013 :: Batch Conversion From Imperial To Metric Not Working

Jul 29, 2013

I need to convert a large number of drawings from Imperial to Metric (I have copied that drawings and intend to save as a metric set, so I'll be overwriting (and possible appending "-METRIC" to the file name.) So I wrote a batch file to collect the drawings then apply a conversion (autocad) script.

I also created a script to close the drawings that would run after a batch (i.e. subdirectory (say 20 drwgs)).

If I open the drawings manually and run the scripts, they work fine, however I have been unable to automate the procedure.

Batch to collect files:

SET ACAD2013PATH="C:Program FilesAutodeskAutoCAD 2013"

FOR /R c:ACADCrosby-Converted_to_Metric est %%f in (*.dwg) do start /wait %ACAD2013PATH%acad.exe%%f /b c:ACADscale-imperial-to-metric.scr

start /wait %ACAD2013PATH%acad.exe c:ACADCloseACAD.scr

[code]...

View 5 Replies View Related

AutoCAD 2013 :: Batch Conversion Of All Or Selected Blocks To Mass Objects?

Sep 30, 2013

I need to export many library elements (conveyors) which are saved in individual blocks to mass objects. I need to convert them to IGES after that.

Until now I have to open every single block and convert all of it to a mass element. This simply takes too long.

Is it possible to write a small script or program which converts all blocks or the selected blocks to mass elements?

- 2500K @ 4.2Ghz- 8GB - Radeon7970 -
- Xeon 1230V2 @ stock Ghz- 32GB - Quadro 2000 -

View 7 Replies View Related

Lightroom :: Unable To Search 4 Images After Conversion?

May 16, 2012

Lightroom 4 just converted all my images from LR3.  The problem is that I can't look up anything in the "All Photographs" catalog. Although all photos are available in the folders below, all the collections are intact, the All Photographs catalog shows 30K images, and all other functions seem normal, clicking on it shows a blank screen with this message:Click "import..." button to beginBegin what? The import button takes you to the normal import screen with "source" as being the first step. Does it want me to pick all the photographs that are already in the catalog, so that it can... import them?  The catalog already has all this information. Right now the only way I can do a search on the catalog is to do it from a folder or collection.  I need to search the entire catalog!
 
MAc Pro, Mac OS 10.6.8, Lightroom 4.0, Photoshop CS6

View 2 Replies View Related

GIMP :: TGA To BMP Conversion (lot Of Files)

Jul 29, 2011

I have 32bit TGA images files and want to convert them into 32bit BMP, preserving the alpha channel (very important).

I have about 2000 files I need to convert. Doing it manually using gimp, I just open the image, save as and change the extension to bmp. I leave every other setting to default.

View 2 Replies View Related

GIMP :: Color Conversion From CYBK To RGB

Oct 8, 2012

I bought a Pepin press book & cd, of wallpaper patterns. They are not in the rgb mode, but the (what is it? ) CYBK? mode. When I load them onto gimp the colors are way off.

Apparently gimp converts them to rgb mode, but the colors are glaring & clashing.

View 5 Replies View Related

GIMP :: Small Set Of Image Conversion

Jul 13, 2012

We would like to use Gimp for a small set of image conversion experiments. Unfortunately, the system where we want to install and run Gimp belongs to a US Govt agency, the environment is secure and their data is extremely sensitive. So we need to get their approval before we can install Gimp. To get it, we need to provide information on whether Gimp is "US-based" or "foreign-origin". We don't have a strict definition of what either of these terms means, but I am wondering if you have encountered these questions before. Can you tell me what the geographic origin of the tool is? Do you know of any specific instances of your tool being installed at any US Govt locations with sensitive environments?

View 2 Replies View Related

GIMP :: Indexed Color Conversion Error

Aug 23, 2013

I have been having a problem with Gimp. I am currently working on a Gif banner for a webpage. The banner itself is 728x90 pixels. It has 186 different layes as well, some of which are inside of folders. The xcf itself is complete, but the only other stage I need to complete is converting it to Indexed colors so I can export it as a gif; however, whenever i access the Image>Mode tab, the "Indexed" button isn't highlighted, and I am unable to click on it, even with the keyboard commands. I haven't been able to find a solution so far. Here's a picture of the problem.

View 7 Replies View Related

GIMP :: Adjust Size Of Text Layer Without Its Conversion To A Bitmap?

Mar 27, 2012

I have a text layer with width given at its creation. When I later open text editor and enter some wider text, it is wrapped to second line. So I would like to enhance the width of the layer to prevent this. When I add width to the layer using "Layer Boundary Size" menu item, text layer gets converted into standard bitmap layer . I don't understand the logic why a text layer isn't preserved on change of its size .

Is there a way how I can adjust size of text layer without its conversion to a bitmap?

View 2 Replies View Related

Photoshop :: Batch For 2 Images In A Set

Aug 27, 2013

I created a nice action to work on 2 (currently loaded) images in combination.

Now I would need support on how to apply this existing and successful action in a AUTOMATE/BATCH process on a folder full of files. So instead of just loading 1 (one) picture at a time and applying the action within a standard batch to a single picture -  I would need that photoshop loads 2 (TWO) images from my source folder at the same time - applies the action-batch - and then continues to load the next 2 pictures, then the next 2 etc....  

View 5 Replies View Related

Photoshop :: 200+ Images To Batch...

Nov 1, 2007

I have a set of JPG images of stock. What I want to do is to resize the original picture to 153 pixels high then place an layer on top of the resized image of a Jar with a transparent centre.

That will make it look like the stock image is inside the jar.

I've tried recording an action and doing a batch, but it didnt work.

How can I do this so that I dont have to do every image one at a a time, I must be able to automate it....

I'm running Photoshop CS3

View 13 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved