Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 290 results for
imagemagick
- Page 1
Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by SimonIoa
…;setFontSize(52); $draw->annotation(20, 50, "
imagemagick
"); $canvas = new Imagick(); $canvas->newImage(350…quot;.$p ); while($row=mysql_fetch_array($query1)) { include('
imagemagick
.php'); $filename=$row['image_path']; $final_image='/public_html/uploads/photos…
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by iamthwee
http://stackoverflow.com/questions/8319203/
imagemagick
-vs-gd-which-is-faster-less-resource-intensive-and-produces-…better If you want more features and quality opt for
imagemagick
. The fact that your images are returning blurred, is simply…
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by SimonIoa
the file permissions are ok... i been working on on it for two weeks... i found
imagemagick
better... plus i dont got to use GD to resize images... i used everything i know. but with
imagemagick
i resized the images but they return blur -i mean with low quality- and i dont see to fix that... although i google it too
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by SimonIoa
ok @iamthwee. the paths are ok... the thing is that i used
imagemagick
and it worked except that the images returned blured. Another said that gd is better but didnt understand how it works. Can you place an example here?
Re: Problem with ImageMagick
Programming
Web Development
15 Years Ago
by ShawnCplus
[QUOTE=psyb0rg;1024571]I have Ghostscript and
IMagemagick
installed on my local machine. I can access the IM … this matter would be useful![/QUOTE] PHP has built-in
ImageMagick
functions, why are you using an external program?
Perl and ImageMagick
Programming
Software Development
16 Years Ago
by Sappster
… advance Development machine: Windows Xp with Perl 5.10.0,
imageMagick
6.4.9-Q16,
Problem with ImageMagick
Programming
Web Development
15 Years Ago
by psyb0rg
I have Ghostscript and
IMagemagick
installed on my local machine. I can access the IM …
Re: Problem with ImageMagick
Programming
Web Development
15 Years Ago
by ShawnCplus
exec only returns the response code, use shell_exec, that'll get all of the output so if
imagemagick
is producing errors you'll be able to see them.
Install imagemagick on windows with xampp
Programming
Web Development
14 Years Ago
by amit_kuetcse2k5
Hi, I can not configure
imagemagick
on windows with xampp . Please help me? Thanks Amit
Re: Install imagemagick on windows with xampp
Programming
Web Development
14 Years Ago
by mschroeder
You need to install the
ImageMagick
binary library for windows. You can access this via the …
Image auto-orient with Tesseract and ImageMagick
Programming
Software Development
10 Years Ago
by deceptikon
…-oriented solution using the Tesseract OCR engine and a .NET
ImageMagick
library (both available on NuGet). It might be used like…
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by Tpojka
Can you test it on non secured page and check results, some development environment maybe?
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by iamthwee
Did you try with the GD library, imagick is overkill in my opinion. Second not all hosting sites have it enabled whereas GD is more likely. http://www.zoopable.com/check-php-gd-library-installed-or-not/
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by SimonIoa
this is the info... GD module info Array ( [GD Version] => bundled (2.1.0 compatible) [FreeType Support] => 1 [FreeType Linkage] => with freetype [T1Lib Support] => 1 [GIF Read Support] => 1 [GIF Create Support] => 1 [JPEG Support] => 1 [PNG Support] => 1 [WBMP Support] => 1 [XPM Support] => 1 [XBM Support] => 1 […
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by SimonIoa
locally (wampserver) it doesnt shows the photos at all
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by iamthwee
I can confirm you have gd2 installed which mean resizing works. As for resources google is your friend. Any issues post em here and we'll walk you through it.
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by SimonIoa
this one seems good but i dont know how to save... jstricks.com/php-function-resize-image-using-gd/ this is the code i use $query1=mysql_query("select image_path from user_uploads where id=".$p ); while($row=mysql_fetch_array($query1)) { $filename= $base_url.$path.$row['image_path']; resizeMyImage($filename, $…
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by iamthwee
Not sure what you're trying to do but just do a simple upload image and crop test... Once you confirmed that as successful then integrate it into your current code. Simples... I personally, don't use native php anymore, I do all my queries and image crop via a suitable php framework, it's worth learning and it is bags more readable. As an example…
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by SimonIoa
Wrong.... You are not saying anything i dont know so you dont help me figure out whats wrong not to do it for me but to tell whats wrong as @Cereal and many more are doing in here. If anyone answered like you do (google is your friend as things like that) then there would be no purpose for sites like that Right?
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by iamthwee
OK I see, where this is going, yes you are correct simonloa, I have been a bit vauge, but the truth is every language, every application starts from a simple premise: Get the basics right then we can move from there. Any language begins from the basics... get a simple upload and resize image working with php, then with can worry about the rest. …
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by iamthwee
btw I've not looked at your code properly, but my gut is telling me this line is somehow wrong... `$query1=mysql_query("select image_path from user_uploads where id=".$p );` I'm guessing it should be `$query1=mysql_query("select image_path from user_uploads where id='$p'" );` But seeing as this has nothing to do with php …
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by iamthwee
If it is not that which it might not be, test to see if your paths are correct and your folder has write permissions, thats about the best I can say without running the script.
Re: Reisize images with Imagemagick
Programming
Web Development
10 Years Ago
by iamthwee
Try setting the quality to 100% and see if that fixes the blur. If you are resizing the image to make it bigger it will be blurred. Smaller it won't. I can't help, I don't use IM. I just use GD2 in codeigniter. Better still attach an image you are trying to resize and the dimensions you want it cropped to.
Re: Perl and ImageMagick
Programming
Software Development
16 Years Ago
by KevinADC
Sorry, I have no experience with installing either of those.
Re: Problem with ImageMagick
Programming
Web Development
15 Years Ago
by psyb0rg
What are those functions? As far as I know, IM' tools have to be called through the command line. And that is what exec() does.
Re: Problem with ImageMagick
Programming
Web Development
15 Years Ago
by ShawnCplus
[url]http://php.net/imagick[/url]
Re: Problem with ImageMagick
Programming
Web Development
15 Years Ago
by psyb0rg
Thanks. Looking into it. No idea about debugging exec()?
Re: Can't find Magick++.h?
Programming
Software Development
15 Years Ago
by Salem
ImageMagick
is a program AND an API [url]http://www.
imagemagick
.org/script/index.php[/url] Command-line Tools Processing Options Usage Program Interfaces MagickWand MagickCore PerlMagick [COLOR="Red"]Magick++ [/COLOR]
Finding File Path
Hardware and Software
Linux and Unix
11 Years Ago
by davy_yg
…. ---------------- root@ubuntu:~# locate
imagemagick
/etc/bash_completion.d/
imagemagick
/usr/lib/mime/packages/
imagemagick
/usr/share/doc/
imagemagick
/usr/share/doc/
imagemagick
-common /usr/share/doc…
Re: Finding File Path
Hardware and Software
Linux and Unix
11 Years Ago
by JasonHippy
… the tools that make up
ImageMagick
, or the path to the
ImageMagick
libraries. The
ImageMagick
tools (convert, identify, mogrify…convert`, which should give you the path to
ImageMagick
's image conversion program. If it wants the…is the currently installed version/build of
ImageMagick
.) Try using `locate
ImageMagick
` (note the capitalisation) and you…
1
2
3
5
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC