Hi all,
I have an ImageMagick-based 32-bit C++ application. Under Windows 7 64-bit, it crashes within ImageMagic on any attempt to read a JPG file. A trivial example like this:
#include <Magick++.h>
int APIENTRY _tWinMain(...)
{
Magick::Image img;
img.read("D:\\a.jpg");
return 0;
}
crashes, too. The crash is within STL ...
I'm looking for a way that I can take say, a 200x200 pixel image and center it over a background that's 500x500 pixels. The background should be the color of the top-left corner of the 200x200 pixel image.
I get the -gravity and -fill flags, but I'm having trouble finding a way to grab that top-left corners color to pass to the -fill fl...
I am trying to use PythonMagickWand to use a Shepards distortion on an image. You can also see the source of distort.c that is used by ImageMagick.
PythonMagickWand does not by default support Shepards distortion. To fix this, I added in:
ShepardsDistortion = DistortImageMethod(15)
to line 544 of PythonMagickWand (See here for my modi...
Hi,
I'm looking almost hour for examples of using imagemagick.net in c# and I can't find antything.
All what I need is resize image (.jpg) to new size image (jpg, too) and would be great if you known how to add watermark.
I downloaded imagemagick.net from
http://imagemagick.codeplex.com/
...
I have some websites that use ImageMagick to convert images and place them in a created folder. Locally it all worked fine, but once I deployed it to my network's webserver it would not convert the images nor create the folders. My asp.net pages that read data from a database work. All the users have full control permissions over the sit...
I'm working with Ruby on rails 2.3.8, NetBeans IDE.
I've installed paperclip and I could show/save images successfully. Now, I've installed ImageMagick-6.6.2-4-Q16(for windows 7, 64bits).
Until that moment, my model looked like this(and worked fine):
has_attached_file :photo
Now, after installing ImageMagick, when I add the :style l...
Hi I just install image magick as per the php.net description. but its doesnt working well.
it always shows this error
Fatal error: Class 'Imagick' not found in C:\wamp\www\shobtest\imgborder.php on line XXX
why this error happening. I restarted my webserver. but it still showing this error.
...
Hi
i am in need of curving a text and place it over another image. i got the below mentioned code from their website and its not working; somebody please tell me how can i do this in php. My system will support imagemagick and its enabled..
convert ( newmug1.jpg -thumbnail 200x200 -write mpr:image +delete ) \
( -pointsize 20 -fill red ...
I intent to resize an animated gif and outputing it to the browser on-the-fly. My problem is that when I save the resized image it is of good quality, but if I echo it to the browser it is of poor quality and the animation is removed. Here is the code:`
header("Content-type:image/gif");
try
{
/* Read in the animated gif */
$anim...
I just try to integrate ImageMagick into my PHP project. I installed and just execute the sample files that they provided with the imagick-3.0.0RC1 zip file. But it shows
Fatal error: Class 'Imagick' not found in C:\wamp\www\imagick-3.0.0RC1\imagick-3.0.0RC1\examples\watermark.php on line 9
this kind of an error how can I avoid that. ...
How to install image magic at windows 7. I followed these instruction
To install IMagick on windows xp (php 5.2.x)
1.) download and install ImageMagick-6.5.8-7 Q16-windows-dll.exe
http://www.imagemagick.org/download/binaries/ ImageMagick-6.5.8-7-Q16-windows-dll.exe
2.) download php_imagick_dyn-Q16.dll from:
http://valokuva.org/outside...
I'm trying to install Image Magick on MAMP. And I'm seriously out of my depth.
I've installed MacPorts, and opened the terminal. I've typed in sudo port -v selfupdate per the instructions on http://www.macports.org/install.php#pkg
But the response I get from the Terminal is Unrecognized action "sudo"
I've googled and googled, but can'...
I've created a little Windows app that uses the ImageMagick C API but have run into a bit of a brick wall. The app works fine and I'm ready to share it with a few others in our organisation but I can't find documentation on distributing such an app without installing ImageMagick on the target machine.
Does anyone here have information, ...
So, I want to resize images to a FIXED width, but proportional height.
I have been trying a wide range of operators:
380x242#
380x242>
380!x242
380x242<
none of them have the desired effect. Any help? I want it to fill or resize to the 380 width, then resize / shrink the height by the same factor it used to shrink or resize the image...
Hi,
I want to create a button with rounded corners in Qooxdoo but I'm having some problems. I guess it's a problem with ImageMagick and not my Qooxdoo code, but I'll post it anyway.
So in order to create rounded corners I'm following this guide
Guide
this is what my image.json contains:
{
"jobs" :
{
"common" :
{
"let" ...
Hi All,
I have a bunch of .eps files (CMYK) that I need to convert to .jpg (RGB) files.
The following command sometimes gives me under or over saturated .jpg images, when compared to the source EPS file:
$cmd = "convert -density 300 -quality 100% -colorspace RGB ".$epsURL." -flatten -strip ".$convertedURL;
Is there a smarter wa...
I've been using Imagemagick's mogrify on Cygwin, but at some point it stopped working. I've tried uninstalling / reinstalling, but still no go.
When I try to run mogrify it trows this error :
/usr/bin/mogrify.exe: error while loading shared libraries: ?: cannot open shared object file: No such file or directory
Anyone have any hints ...
system(' convert -size 320x100 xc:lightblue -font Candice -pointsize 72 \
-fill navy -annotate +25+65 \'Anthony\' \
-distort Arc 120 -trim +repage \
-bordercolor lightblue -border 10 font_arc.jpg
');
curving text like arc
This code is not working please help me
...
I am trying to convert a PDF document into a PNG file using ImageMagick command line tools from a ASP.NET website. I create a new shell process and ahve it execute the following command:
convert -density 96x96 "[FileNameAndPath].pdf" "[FileNameAndPath].png"
This runs well when testing the website on my local machine with the ASP.NET De...
Please correct my syntax
For taking screenshot of entire window, am using
status=MagickReadImage(magick_wand,"x:");
For taking snap of a particular window I used
status=MagickReadImage(magick_wand,"x:$WINDOWID");
Both are reporting syntax errors, but if I pass file names as second parameters then it is compiling without any failure. ...