Closed
Bug 1204243
Opened 9 years ago
Closed 9 years ago
10000 pixels is maximum rendered image
Categories
(Core :: Graphics: ImageLib, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 591822
People
(Reporter: boxborisovav, Unassigned)
References
()
Details
Attachments
(1 file)
1.99 MB,
application/x-rar
|
Details |
User Agent: Mozilla/5.0 (Windows NT 6.1; rv:40.0) Gecko/20100101 Firefox/40.0
Build ID: 20150826023504
Steps to reproduce:
Try to load image with width or height more then 9 999px by next context:
<svg width="10001" height="3543" x="0px" y="0px" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 10001 3543">
<image overflow="visible" xlink:href="http://www.picshare.ru/uploads/150912/b7DXF4HNsK.jpg"
width="10001" height="3543">
</image>
</svg>
or by using html teg: <img>
Actual results:
Can't see rendered image in FF, in Chrome sometimes got error about not enought memory (for 1 MB or 10+ MB image - there is no difference). When I split my image on two parts like this:
<svg width="16536" height="3543" x="0px" y="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 16536 3543">
<image xlink:href="./images/koe0.jpg" width="8268" height="3543" x="0px" y="0px">
</image>
<image xlink:href="./images/koe00.jpg" width="8268" height="3543" x="8268px" y="0px">
</image>
</svg>
then all rendered successfully
Expected results:
I don't want to split my .jpg image on few parts cause I lose memory when resaved parts in .jpg extension/
I want to be rendered pictures size more 10000 pixels
Reporter | ||
Updated•9 years ago
|
Comment 1•9 years ago
|
||
User Agent:Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0
Build ID:20151201030231
Hi,
I have tested this issue on Win 7 with FF Nightly 45.0a1 and I can reproduce the issue, also the problem appears in Chrome. When I want to open the page I receive an error.
Status: UNCONFIRMED → RESOLVED
Closed: 9 years ago
Component: Untriaged → ImageLib
OS: Unspecified → Windows 7
Product: Firefox → Core
Hardware: Unspecified → x86
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•