Jmagick write image to a specific folder

Jmagick write image to a specific folder

hi,

I am writing the code for resizing the images into which the image will be get from one location and save the resized images to the another location. for example : get an image to resize from c:\myDirectory\images and save the resized image to c:\myDirectory\newImages. When I compile my code it gets the image from c:\myDirectory\images and resized it successfully but the resized images are not saved into the c:\myDirectory\newImages rather these are saved into the c:\myDirectory. Code is given below :

try{
        String path = "C:\\myDirectory\\images";
        File file = new File(path+"\\test.jpg")
        ImageInfo ii = new ImageInfo(file);
        MagickImage mi = new MagickImage(ii);

        String destPath = "C:\\myDirectory\\neImages";
        File destFile = new File(destPath);

        mi.setFileName(destPath+ "."+fileFormat);
        mi.writeImage(ii);
        }catch(Exception ex){
            System.out.println(ex.getMessage()+"Directory not selected");         
        }

The code doesn't contain the code for image resizing.

View Answers

August 21, 2012 at 7:05 PM

hi,

I have also faced the same problem, use this code it may help you to save the resized image to a specific location

try{
            String path = "C:\\myDirectory\\images";
            File file = new File(path+"\\test.jpg")
            ImageInfo ii = new ImageInfo(file);
            MagickImage mi = new MagickImage(ii);

            String destPath = "C:\\myDirectory\\neImages\\tested";
            File destFile = new File(destPath);

            mi.setFileName(destPath+ "."+"jpg");
            mi.writeImage(ii);
            }catch(Exception ex){
                System.out.println(ex.getMessage()+"Directory not selected");         
            }









Related Tutorials/Questions & Answers:
Jmagick write image to a specific folder
Jmagick write image to a specific folder  hi, I am writing the code for resizing the images into which the image will be get from one location... to save the resized image to a specific location try{ String path
How to write image in Jmagick
How to write image in Jmagick  hi, I am new in Java I am using the Jmagick library, how can I write an image in Jmagick ? Thanks.   hi, You can try this snippet into your code ImageInfo ii = new ImageInfo("abc.jpg
Advertisements
Jmagick get image size
Jmagick get image size  Hi, How I can get the image size while using the Jmagick library? Thanks   hi, the code given below may help you to get the image size when using Jmagick ImageInfo ii = new ImageInfo(path
Jmagick crop image
Jmagick crop image  hi, How can I crop the images using Jmagick Thanks.   hi, To crop an image you can use the cropImage() method of MagickImage. Following code explains how an image may cropped ImageInfo ii = new
Jmagick how to add image on an existing image
Jmagick how to add image on an existing image  hi, I am using Jmagick library in my swing application I want to add an image (say logo) on an existing image. can any one explains how ? Thanks.   hi, In Jmagick you
How can I generate diff image using Jmagick?
How can I generate diff image using Jmagick?  Hi, I used 'compare' in ImageMagick to produce diff image with metric. example: $ compare -verbose... Jmagick. Can anybody help me get a diff image with similar metric using Jmagick
image save to folder in java
image save to folder in java  Hi, I am working with java. In my application i want to give facility to user to add and change image. I use open dialog box to select image, it will work properly i.e on button click open dialog
How to write text on image
How to write text on image  hi, I am using the Jmagick library. I want to write text on image, how is it possible ? Thanks.   hi, I am new in Jmagick but, I used the following code and it might also help you
Image name,image path into database and image into folder using jsp
Image name,image path into database and image into folder using jsp  How to insert image path and image name into oracle database and image into folder using jsp
java write to a specific line
java write to a specific line In this tutorial, you will learn how to write at specific line in text file. Java provides java.io package to perform file operations. Here, we are going to write the text to the specific line of the text
Jmagick
Jmagick  can any one help me out ...how to use jmagick with servlets and jsp and its installation process also............ its very urgent....... thanx ina adv
Full path of image to save it in a folder
Full path of image to save it in a folder  Sir ,I am trying to upload... to find that image path &upload it as well. I am just a beginner in jsp... in the local context of your project, then you may first create a folder under WEB
image upload in webapp/upload folder
image upload in webapp/upload folder  sir i want to store upload image in my project directory WebApp/Upload_image/ pls send the jsp servlet code when i upload the image one error found "system cannot found the specified path
Java- Save Image into project folder in web application
Java- Save Image into project folder in web application  I have a requirement of saving the image into project folder .. which is a web application... want to save the image..when I am trying to create empty folder and get
Delete image from folder - JSP-Servlet
. that image name based on user id and that image is going to on folder in server after...Delete image from folder  Dear All, i used some coding... creating a new png image. in my project if two user will be login same time meanse
i want to save image on server folder. and i want to save URL of this folder and name of image in database
i want to save image on server folder. and i want to save URL of this folder and name of image in database  hi i want to save image on server folder. and i want to save URL of this folder and name of image in database.on click
How to copy an jpeg image from one folder to other folder using jsp
How to copy an jpeg image from one folder to other folder using jsp  How to copy an image from one folder to another folder using jsp
Version of jmagick>jmagick dependency
List of Version of jmagick>jmagick dependency
Delete image from folder - JSP-Servlet
Delete image from folder  Hi Thanks Rajnikant to given me reply i am not storing my image in db just userid comming from db means my image name like : Pie(userid).png which alocated in my server folder when
write file in aplication folder with out giving full path - WebSevices
write file in aplication folder with out giving full path  i have a simple java class by the help of this java class i want to write file in application folder with out giving full path like c:/data/aa
Image is in same folder where the java file is located - Swing AWT
Image is in same folder where the java file is located  dear sir It is there in the same folder..means the photograph.jpg file is created in the same folder where my java file is present... wat I should do sir
How to copy an jpeg image from one folder to other folder using jsp
How to copy an jpeg image from one folder to other folder using jsp  ... be in my image folder...so,How to copy an jpeg image from one folder to other folder using jsp or servlet
ModuleNotFoundError: No module named 'django-random-image-from-folder'
ModuleNotFoundError: No module named 'django-random-image-from-folder' ...: ModuleNotFoundError: No module named 'django-random-image-from-folder' How to remove the ModuleNotFoundError: No module named 'django-random-image-from-folder' error
ModuleNotFoundError: No module named 'django-random-image-from-folder'
ModuleNotFoundError: No module named 'django-random-image-from-folder' ...: ModuleNotFoundError: No module named 'django-random-image-from-folder' How to remove the ModuleNotFoundError: No module named 'django-random-image-from-folder' error
how to store image in folder and stored image path in mysql database using JSP
how to store image in folder and stored image path in mysql database using JSP  how to store image in folder and stored image path in mysql database using JSP
How to store user name,city,state,image path into database and image into folder using jsp
How to store user name,city,state,image path into database and image into folder using jsp  How to store user name,city,state,image path into database and image into folder using jsp
How to access the image file from project folder itself while writing to pdf using itext?
How to access the image file from project folder itself while writing to pdf using itext?  I am writing a pdf using itext where i add a image... to search for the image in the domain folder of the glassfish location.But i want
How can store image in server folder when deployed with a .war file?
How can store image in server folder when deployed with a .war file?  Hi all; When I am using application.getRealPath() , it return null when deployed with a .war file and when I use hard code it shows syntax error or path
Java Write To Image File Example
Java Write To Image File Example To Write Image in different format you may use javax.imageio.ImageIO class. To compress the image in different format you need to do the following At first create an instance of your original Image file
Artifacts of jmagick
List of Artifacts of jmagick maven depenency
Write an applet to display scrolling image in an applet window using thread.
Write an applet to display scrolling image in an applet window using thread.  Write an applet to display scrolling image in an applet window using thread
JMagick Tutorial
of JMagick that writes text on the image. Blow is the program that writes...JMagick Tutorial - Download, install and create simple program JMagick library is Java library for handling the image in Java. It is implemented as thin
Spring 3.2 MVC, Upload File in a specific folder
In this Spring 3.2 MVC tutorial, you will learn about uploading file in a specified folder
how to read 100 text files from a folder or directory and write the data into a single file.using java programming?
how to read 100 text files from a folder or directory and write the data into a single file.using java programming?  i have multiple(app..100) text... the files and write them into a single file..the target file should have the 1st
Maven Repository/Dependency: jmagick | jmagick
Maven Repository/Dependency of Group ID jmagick and Artifact ID jmagick. Latest version of jmagick:jmagick dependencies. # Version Release Date You can read more at: Maven
Maven Dependency jmagick >> 6.2.4
You should include the dependency code given in this page to add Maven Dependency of jmagick >> jmagick version6.2.4 in your project
Maven Dependency jmagick >> 6.6.9
You should include the dependency code given in this page to add Maven Dependency of jmagick >> jmagick version6.6.9 in your project
create folder
create folder  what code we should write as a web application that it create an empty folder on client's desktop
How can I write a GUI stack program by Java to push Image files instead of other data type items?
How can I write a GUI stack program by Java to push Image files instead of other data type items?   How can I write a GUI stack program by Java to push Image files instead of other data type items? for the push instruction I
Crop Image
Crop Image       This section shows you how the image get crops. To crop an image, an image is defined inside the class folder. The class ImageIcon calls its method
Show Image Scale
Show Image Scale       This section shows you the scales of image. To show scales of Image, an image is defined inside the class folder and calls the ImageIcon class to return
Folder in Java.
Folder in Java.  I have any problem how to make Folder in java program? Can Anybody help me in this part
How to flip image
How to flip image       In this section , you will see how to flip image. To reverse the image, an image is put into the folder where class is specified. The getDefaultToolkit
PHP Random image, PHP Randomizing image
PHP Random image PHP Random image Tutorial Ever wanted to know how to create... $imgpath = "path/to/image/dir"; $handle = opendir( "$imgpath"... comment the code. $handle = opendir( "path/to/image/dir"
image
image  how to add the image in servlet code
Image
Image  how to insert image in xsl without using xml. the image was displayed in pdf..Please help me
Image
Image  how to insert image in xsl without using xml. the image was displayed in pdf..Please help me
Image
Image  how to insert image in xsl without using xml. the image was displayed in pdf..Please help me
image
image   Dear every body please help me how to add and retrive image and video into oracle 11g using jsp
How to make a folder icon, make a folder icon, folder icon
How to make a folder icon       The folder is used in the computer, this example will teach you to design technique of the folder.  New File: Take a new file as your folder

Ads