Search found 18 matches

by mbatra
2013-01-22T01:30:44-07:00
Forum: Magick++
Topic: Read function of ImageMagick throws Access violation error.
Replies: 4
Views: 22906

Re: Read function of ImageMagick throws Access violation err

I have the same problem _________________ WoW gold | Diablo 3 Gold | Aion Kinah kaufen | Diablo 3 Gold kaufen Hi, Follow the below given link ... http://flightschool.acylt.com/devnotes/the-nightmare-that-is-magick-and-vs-2010/ Also try to re-build the code in "Release" mode. Same code wil...
by mbatra
2012-11-14T02:15:15-07:00
Forum: Magick++
Topic: Read function of ImageMagick throws Access violation error.
Replies: 4
Views: 22906

Re: Read function of ImageMagick throws Access violation err

Hi,

I have solved the problem. Now my code is working for windows 7 as well as for WinXP.


Regards,
mbatra
by mbatra
2012-09-27T22:32:34-07:00
Forum: Developers
Topic: how to apply Magick++ effects on overlay images.?
Replies: 1
Views: 4094

how to apply Magick++ effects on overlay images.?

Hi, I am using Magick++ effects on Images. I have one issue with applying effects on overlay images. I'll load an image (Foreground Image) of ".jpg" format. I'll apply Greyscale effect on that image, it works fine. If I'll load an overlay image (".png" format) on foreground image...
by mbatra
2012-09-26T22:34:12-07:00
Forum: Developers
Topic: how to increase/decrease an effect's value in ImageMagicK.?
Replies: 1
Views: 4349

how to increase/decrease an effect's value in ImageMagicK.?

Hi, I am using Magick++ effects on images. I have applied Blur effect on an image. I have provided a slider for the same. User can increase the value of the slider and same will increase the blur effect on the Image. Now if I decrease the value of the slider, it doesn't reduce the blur effect on the...
by mbatra
2012-08-28T03:13:27-07:00
Forum: Developers
Topic: how to add color to an image using Magick++.?
Replies: 0
Views: 4127

how to add color to an image using Magick++.?

Hi, I have loaded an image using FreeImage Dll. Now I want to use the functionality of Magick++ on that Image. I am able to do that. Problem is I want to add the effect on run time. I have a GUI where one slider control sets the color level. I want when user drags the slider, the density of the colo...
by mbatra
2012-08-20T06:20:37-07:00
Forum: Developers
Topic: how to draw text on an image using ImageMagick.?
Replies: 1
Views: 4227

how to draw text on an image using ImageMagick.?

Hi,

I am using Magick++ for ImageProcessing operations. I want to draw text on the image and also the drawn text should be movable as well as user should be able to rotate the text.

Is it possible using ImageMagick(Magick++).

Any help will be appreciated.!


Thanx & Regards,
Mbatra
by mbatra
2012-08-20T03:46:42-07:00
Forum: Developers
Topic: Use of FilterTypes in ImageMagick.?
Replies: 2
Views: 6018

Use of FilterTypes in ImageMagick.?

Hi, I am using Magick++ for my MFC application. I am not able to understand the use of FilterTypes ( file - resample.h ) in ImageMagick. I have used one of the filter types on an image but saw no effect of that filter. I loaded an image using Image class. Then applied one of the filter types on that...
by mbatra
2012-08-16T22:44:33-07:00
Forum: Developers
Topic: How to use distort function of ImageMagick.?
Replies: 3
Views: 9207

Re: How to use distort function of ImageMagick.?

My MagickWand examples in C (link is below in my sig) has examples of using MagickDistortImage in the affine transformation example and in the text effects example. It isn't C++ but it should help you with the arguments for the distort method. Pete Hi, Thanx for the reply. I was not able to open th...
by mbatra
2012-08-15T22:49:38-07:00
Forum: Developers
Topic: How to use distort function of ImageMagick.?
Replies: 3
Views: 9207

How to use distort function of ImageMagick.?

Hi, I have to use distort function of ImageMagicK (Magick++). I don't have clear understanding of the parameters passed to it. void distort ( const DistortImageMethod method_, const size_t number_arguments_, const double *arguments_, const bool bestfit_ = false ); Can anybody help me which argumets ...
by mbatra
2012-08-14T04:48:01-07:00
Forum: Developers
Topic: How to display an image in a control using ImageMagick.?
Replies: 1
Views: 4621

How to display an image in a control using ImageMagick.?

Hi, I am using ImageMagick (Magick++) for VC++ (MFC) application. I have a dialog control. I have one picture control on that dialog box. Using ImageMagick, I am able to read an image and do some operation on it (e:g: rotate an image etc.). After doing an operation that image is written to some memo...
by mbatra
2012-08-01T23:45:42-07:00
Forum: Developers
Topic: how to use ImageMagick for VC++(MFC) applications.?
Replies: 2
Views: 6982

how to use ImageMagick for VC++(MFC) applications.?

Hi, I am successfully able to use magick++ in C++ console applications. But I have issues regarding use of Magick++ to use in VC++ (MFC) apps. I have used simple code to read an image using magick++. But read function throws an exception of "Access violation writing location...". <code> Im...
by mbatra
2012-07-31T05:50:19-07:00
Forum: Developers
Topic: read function throws exception of Access violation.?
Replies: 2
Views: 5713

Re: read function throws exception of Access violation.?

Try this example (save as magick++.cpp): #include <iostream> #include <Magick++.h> using namespace std; using namespace Magick; int main() { try { Image sourceImage("logo.jpg"); Image newImage(sourceImage); newImage.zoom("50x"); newImage.write("newlogo.jpg"); } catch (...
by mbatra
2012-07-31T04:43:30-07:00
Forum: Developers
Topic: read function throws exception of Access violation.?
Replies: 2
Views: 5713

read function throws exception of Access violation.?

Hi,

I am using Magick++ to rotate an image. I have initialized the ImageMagick library also. WHen I am reading an image using read function, it throws an exception 'Access violation writing to memory location .....'.

Anybody , have any idea about this.?



Regards,
by mbatra
2012-06-11T02:54:24-07:00
Forum: Magick++
Topic: Read function of ImageMagick throws Access violation error.
Replies: 4
Views: 22906

Read function of ImageMagick throws Access violation error.

Hi, I am using ImageMagick (Magick++) library. I want to use the features of Magick++ in VC++ application. I have written the below code to read a file from the memory. Image image; image.read("D:\\smile.gif"); image.rotate(145); image.write( "red_pixel.gif" ); When I compile the...
by mbatra
2012-06-05T04:42:27-07:00
Forum: Developers
Topic: How to Draw an image in Picture control using ImageMagick.
Replies: 4
Views: 9965

Re: How to Draw an image in Picture control using ImageMagic

Hi, I have a MFC dialog based application with a picture control on it. I want to draw an image in the picture control using ImageMagick. Can anybody give a sample code for the same. Regards, mbatra Can you elaborate or provide some examples. I for one do not have clue what MFC dialog based applica...