이미지 크기 조정이 제대로 작동하지 않는 것 같습니다
-
-
"잘 작동하지 않는다"는 의미를 설명하십시오.Please explain what you mean by "not working well".
- 0
- 2011-05-18
- scribu
-
때로는 이미지의 크기가 조정되고 때로는 그렇지 않습니다.Sometimes images are resized and sometimes not.
- 0
- 2011-05-18
- José Pablo Orozco Marín
-
문제를 더 잘 설명해야합니다.이미지 크기를 조정하지 않으면 어떻게됩니까?오류가 발생합니까?잘 저장되지만 이미지가 생성되지 않습니까?You'll need to explain your problem better. What happens when images are not resized? You get an error? It saves ok but the images are not generated?
- 0
- 2011-05-18
- MZAweb
-
이 기사를 살펴 보는 것이 좋습니다.다른 사용자가 대답하도록 유도하는 방식으로 질문을 설명하는 데 도움이됩니다.http://blog.superuser.com/2011/05/02/how-to-get-answers/I recommend taking a look at this article. It'll help you explain your question in a way that prompts other users to answer. http://blog.superuser.com/2011/05/02/how-to-get-answers/
- 0
- 2011-05-18
- Zach Shallbetter
-
귀하의 지침에 감사드립니다. 솔직히 모든 것을 알고 있지만 이번에는 게으른 바보였습니다.내 질문을 업데이트합니다.베 소스.Thanks for your guidelines, honestly I know all those things, but this time I get what I diserve for been a lazy moron. I just update my question. Besos.
- 0
- 2011-05-18
- José Pablo Orozco Marín
-
2 대답
- 투표
-
- 2011-05-18
과거에 매우 큰 이미지를 업로드 할 때 동일한 문제가 발생했습니다.이미지 크 런칭과 관련하여 실패하고 HTTP ERROR가 빨간색으로 표시됩니다.그러나 다른 이미지는 계속로드됩니다.실패 할 파일 크기가 아니라 이미지의 픽셀 너비와 높이입니다.
기본 PHP 설정에서 이미지 당 처리 할 수있는 대부분의 GD 라이브러리는 1,000,000 픽셀 (1024px * 1024px)입니다.
알고 계십니까 : 8,000 픽셀 x 8,000 픽셀 x 4 바이트 (트루 컬러)는 256MB의 월로 핑과 같습니다.이제 256MB의 PHP 메모리 제한을 허용하는 공유 호스팅 웹 호스트가 없다는 것을 알고 있습니다.
제가 찾을 수 있었던 유일한 해결책은 업로드되는 이미지의 크기를 줄이는 것입니다.또는 웹 호스트가 PHP 메모리 제한을 높이도록 설득하십시오.
I've had the same issue in the past when uploading very large images. When it comes to crunching the image it fails and shows HTTP ERROR in red. However other images continue to load. It wasnt file size where it would fail but rather the pixel width and height of the images.
By default PHP settings, the most GD libary can handle per image is 1,000,000 pixels which is 1024px*1024px
Did you know: 8,000 pixels times 8,000 pixels times four bytes for truecolor equals a walloping 256 megabytes. Now I know no shared hosting webhost that allows you a PHP memory limit of 256MB
The only solution I was able to find, of which I'm offering to you, is to reduce the size of the images beging uploaded. Alternativly convince your webhost to up PHP memory limit, which is unlikely.
-
감사.질문,업로드 제한을 줄이기 위해 WP 상수 또는 후크가 있습니까?이것은 .htaccess에서 시도한 것입니다. php_value upload_max_filesize 4M php_valuepost_max_size 5M php_valuememory_limit 90M 그러나 업로드 제한은 계속됩니다 : 7MB.Thanks. A question, there exists some WP constant or hook to decrease upload limit? This is what tried in .htaccess: php_value upload_max_filesize 4M php_value post_max_size 5M php_value memory_limit 90M But the upload limit continues in: 7MB.
- 0
- 2011-05-19
- José Pablo Orozco Marín
-
- 2011-05-19
@Brady가 말했듯이 많은 설정이 1024 x 1024에 불과하다고 말했듯이 해상도,브라우저,인터넷 속도 등에 대한 통계가 변경되고 많은 사람들이 더 나은 또는 더 새로운 시스템을 실행하고 있음을 보여 주면 향후 변경 될 것입니다.
대부분의 사용자는 1024 x 1024보다 큰 이미지를 볼 필요가 없으므로 이미지 크기를 줄입니다. 저는 일반적으로 800 x 600 이상을 사용하지만 1024 x 1024 미만을 사용합니다. 대부분의 이미지는 더 작습니다.
As @Brady said alot of settings go only to 1024 x 1024 this will probably change in the future as stats for resolutions, browsers, Internet speeds, etc change and show that alot of people are running better or newer systems
reduce the image size as most users do not need to view a image that is bigger then 1024 x 1024. I usually use the 800 x 600 or bigger but less then 1024 x 1024. Most of my images though are smaller
-
먼저 smush.it를 통해 이미지를 실행하면이 경우에 도움이되지 않습니다.GD가 이미지를 열면 비트 맵 이미지처럼 메모리에서 열립니다.각 픽셀에는 자체 RGBA가 있으므로 각 픽셀은 대략 3-4 바이트의 데이터를 차지합니다.원하는 모든 이미지를 최적화 할 수 있습니다. 처리 할 때 도움이되지 않습니다.runnnig the image through smush.it first wont help in this instance. When GD opens the image it opens it in memory like a bitmap image. Each pixel has its own RGBA so each pixel takes up roughly 3-4bytes of data. You can optimize the image all you want it wont help when you come to proccess it.
- 0
- 2011-05-19
- Scott
-
사실 나는 그것을 잊었다True i forgot about that
- 0
- 2011-05-19
- xLRDxREVENGEx
이 동작에 대한 단서를 찾고 있습니까?PHPmemory_limit 또는 WP define ( 'WP_MEMORY_LIMIT','X') 문제라고 생각합니까?
때때로 이미지의 크기가 조정되고 때로는 그렇지 않은 경우도 있습니다. 다른 시나리오에서는 브라우저 충돌이 발생합니다.
Dreamhost를 공유 호스팅으로 사용하고 있으며 업로드 제한은 7 개입니다.
크기가 6.4MB이고 너비와 높이가 11684x3855 인 업로드 된 이미지로 인쇄 오류 : 치명적인 오류 : 254 행의/PATH/wp-includes/media.php에서 허용 된 메모리 크기 268435456 바이트가 소진되었습니다 (46736 바이트 할당 시도).
다른 사용자가 파일에 대해 동일한 문제 (예 : 3MB)를보고하지만 너비와 높이가 더 높은 (2000px 또는 3000px보다 우수)
어떤 도움이든 환영합니다.
미리 감사합니다.