-1
votes
0answers
25 views

Image quality option for thumbnails creation

I'm trying to find a way to put image quality option at this code but i'm really stack. I need a parameter to reduce the thumbnail image quality on this code Image::makeThumb($new_path, 600, 0, ...
0
votes
2answers
93 views

reduce jpeg filesize “on the fly” with php

I would like to lessen the image size (and quality) of a jpeg on the fly when a user is using a certain browser, OS or screen size (used to distinguish mobile from desktop users). How do I do this? I ...
0
votes
1answer
91 views

php upload images, how can i add quality to this code?

I want to add qualit=80 to my upload images file... but no success :( That' my code: <?php // Set limit image size $limitFileSize=300000; // Set ...
0
votes
1answer
83 views

Image print quality check

Usual basic criteria for images in digital print are CMYK 300 dpi right scale Is there a possibility to compare user uploaded image to placed print standard? (Using PHP and perhaps some ...
0
votes
1answer
63 views

Rank for JPEG quality

I have to check few JPEG files for quality level and give to every file corresponding quality mark. Then I must be able to choose better image by this mark. How to decide about visual image quality? ...
1
vote
1answer
897 views

set image quality in Imagemagick [closed]

I to set the quality of the img but it dosent work. $image = 'the path to the img'; /*** a new imagick object ***/ $im = new Imagick(); /*** ping the image ***/ ...
0
votes
2answers
279 views

php Gmagick save jpeg quality

I can't find any property during save or work with Gmagick php extension. http://php.net/manual/en/book.gmagick.php Any one know how can i change JPEG quality in Gmagick?
1
vote
1answer
2k views

How to maintain image quality with FPDF and PHP?

I'm using FPDF with PHP to add an image to a PDF. But the image quality in the PDF is much worse than the original image, as you can see here: Relevant code: $image_height = 40; $image_width = ...
0
votes
2answers
75 views

Testing Procedure and Process

I'm working with a small team to make web based software. We have modules which are more or less independent pieces of code. While the whole site is not complete, we have a couple modules done, so ...
1
vote
1answer
123 views

Ffmpeg & PHP - Small Clip with Good Quality

what are the best options to keep video in nearly good quality while converting it to flv and shrinking its size? I use the followin code now: exec("ffmpeg -i $faila -sameq -s 600x450 -ar 44100 ...
0
votes
1answer
524 views

PHP GD imagecopyresampled horrible quality

Not sure why it looks so bad, but when I copy an image over another image, it looks extremely terrible, like it lost almost all its colors for some reason. $img = imagecreate(240, 140); $wall = ...
0
votes
2answers
315 views

PHP GD Image Watermark Quality

I'am using PHP GD to copy an image (watermark) on another image. Unfortunately the quality of the watermark is terrible. I'm using quality 100% as the attribute, but it doesn't help. Have you guys ...
2
votes
2answers
369 views

mp3 Quality and size manipulation in PHP

I'm looking for a way (a class, sorcerry) to reduce the size of MP3 file. I know MP3 is already optimized, for minimal size, so I wonder if I can somehow reduce the quality (maybe bitrate) so i'll ...
1
vote
2answers
83 views

Show one image in different qualities using PHP

Is there a way to show one image in different qualities on fly? ie: <img src=show_img.php?img_src=http://www.simpsoncrazy.com/content/pictures/homer/HomerSimpson3.gif&img_quality=25> ...
0
votes
2answers
806 views

PHP quality preview photos

With the help of what can be achieved with the same quality pictures as a preview vkontakte.ru (not adv)? I use the library GD. Image quality vkontakte: Quality pictures to my script: Big ...
7
votes
5answers
4k views

PHP Source Code Analyzers

I was wodering whether any of you had any experience with PHP source code analyzers (like FindBugs for Java). What I'm looking for is a tool that scans my codebase for what appears to be bad code. ...
3
votes
1answer
1k views

PHP Image quality issue on rotating and merging

When i merge two images as one background and the other as target image. I m using pngs. When I rotate the target image and then merge, yes everything is fine except that the edges of rotated image ...
4
votes
4answers
120 views

php:: apply backticks to first word in sentence

basically what I am trying to do is, I have an array that looks something like this: array( array( 'select' =>'first string', 'escape' => true ), array( 'select' ...
3
votes
5answers
240 views

Ruby on Rails adoption to improve product quality?

We are a web development company using php as development language, but we are trying to improve the quality of our code, minimizing errors. We find that PHP makes it somewhat "easy" to produce sloppy ...
0
votes
2answers
209 views

What do you think about the quality of this php code?

What do you think about this code? I know this has html mixed with php. How can we separate html from php? What else needs to be done to improve the quality of this code? Hopefully some php ...
2
votes
1answer
731 views

PHP JPEG Crop : Loss of quality?

I'm developing a web-to-print, poster printing application. I'm considering using PHP to crop user-uploaded images, and we will ultimately print the PHP-cropped image. My concern is there will be a ...
3
votes
1answer
111 views

searching for a free and trusty js and php code review tool

i'm looking for a free tool, which i can use local to do javascript and php codreviewing. if it's even easy to install you'll be my hero! any experiences, preferences, suggestions, commendations? ...
1
vote
1answer
1k views

DOMPDF Image quality

I would like to know why the quality of my image is low in DOM PDF. The following image: http://img517.imageshack.us/img517/6996/top3.gif The borders are 1px and everything looks sharp. If I ...
3
votes
2answers
2k views

php imagejpeg quality stinks: why?

im taking image uploads on a website and changing the images to thumbnails that fit onto a 100 x 100 white square. the problem is that the images look like they dont anti-alias properly. images ...
6
votes
2answers
7k views

php imagecopyresampled poor quality

I have a php script which saves the original image, then resizes it - one thumbnail and one larger image for web viewing. This works well except with some images the quality is terrible. It seems to ...
8
votes
3answers
1k views

Best PHP QA tools

I am looking for QA tools for PHP. I am used to PMD, FindBugs and Checkstyle in the Java world. Are there some similar tools for PHP doing code analysis? So far I have found these, but not tested yet: ...
2
votes
1answer
2k views

Setting quality with imagemagick?

I use the following code to create a thumbnail on the site: $small_image = new Imagick($large_path."/".$pic['image']); $small_image->thumbnailImage(100, 0); ...