Skip to content

Commit

Permalink
Fixed copy paste mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Jul 15, 2021
1 parent d624b59 commit 0416173
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion coders/pdf.c
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ static Image *ReadPDFImage(const ImageInfo *image_info,ExceptionInfo *exception)
if (image_info->ping != MagickFalse)
{
pdf_image->magick_columns=page.width;
pdf_image->magick_rows=page.width;
pdf_image->magick_rows=page.height;
pdf_image->columns=page.width;
pdf_image->rows=page.height;
}
Expand Down
2 changes: 1 addition & 1 deletion coders/ps.c
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ static Image *ReadPSImage(const ImageInfo *image_info,ExceptionInfo *exception)
if (image_info->ping != MagickFalse)
{
postscript_image->magick_columns=page.width;
postscript_image->magick_rows=page.width;
postscript_image->magick_rows=page.height;
postscript_image->columns=page.width;
postscript_image->rows=page.height;
}
Expand Down
2 changes: 1 addition & 1 deletion coders/xps.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ static Image *ReadXPSImage(const ImageInfo *image_info,ExceptionInfo *exception)
if (image_info->ping != MagickFalse)
{
postscript_image->magick_columns=page.width;
postscript_image->magick_rows=page.width;
postscript_image->magick_rows=page.height;
postscript_image->columns=page.width;
postscript_image->rows=page.height;
}
Expand Down

0 comments on commit 0416173

Please sign in to comment.