draw on image not fit original one perfectly











up vote
7
down vote

favorite












Say I draw a red image with below code, generate input.pdf:



documentclass{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt,red]
draw (0,0) rectangle (50,50);
draw (25,25) circle (25);
end{tikzpicture}
end{document}


enter image description here



Then include input.pdf and draw the same thing on this image (draw with black):



documentclass{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
node[anchor=south west,inner sep=0,outer sep=0] at (0,0) {includegraphics{input.pdf}};
draw (0,0) rectangle (50,50);
draw (25,25) circle (25);
end{tikzpicture}
end{document}


But the black line not over red line perfectly,see below zoomed parts:



enter image description here



What's wrong with my draw on image code?










share|improve this question


















  • 3




    Well, seems like you did not take into account the line width. Try putting the image at (-pgflinewidth/2,-pgflinewidth/2) to take this into account.
    – marmot
    2 days ago












  • I think the problem is the draw. Replace it by fill[yellow] and fill[green] for exmple.
    – Sigur
    2 days ago






  • 1




    @marmot is right. put your node at (-0.5,-0.5) (half line width offset) and it lines up right. Your image is actually 51pt × 51pt but your code assumes it is 50pt × 50pt.
    – David Purton
    2 days ago

















up vote
7
down vote

favorite












Say I draw a red image with below code, generate input.pdf:



documentclass{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt,red]
draw (0,0) rectangle (50,50);
draw (25,25) circle (25);
end{tikzpicture}
end{document}


enter image description here



Then include input.pdf and draw the same thing on this image (draw with black):



documentclass{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
node[anchor=south west,inner sep=0,outer sep=0] at (0,0) {includegraphics{input.pdf}};
draw (0,0) rectangle (50,50);
draw (25,25) circle (25);
end{tikzpicture}
end{document}


But the black line not over red line perfectly,see below zoomed parts:



enter image description here



What's wrong with my draw on image code?










share|improve this question


















  • 3




    Well, seems like you did not take into account the line width. Try putting the image at (-pgflinewidth/2,-pgflinewidth/2) to take this into account.
    – marmot
    2 days ago












  • I think the problem is the draw. Replace it by fill[yellow] and fill[green] for exmple.
    – Sigur
    2 days ago






  • 1




    @marmot is right. put your node at (-0.5,-0.5) (half line width offset) and it lines up right. Your image is actually 51pt × 51pt but your code assumes it is 50pt × 50pt.
    – David Purton
    2 days ago















up vote
7
down vote

favorite









up vote
7
down vote

favorite











Say I draw a red image with below code, generate input.pdf:



documentclass{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt,red]
draw (0,0) rectangle (50,50);
draw (25,25) circle (25);
end{tikzpicture}
end{document}


enter image description here



Then include input.pdf and draw the same thing on this image (draw with black):



documentclass{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
node[anchor=south west,inner sep=0,outer sep=0] at (0,0) {includegraphics{input.pdf}};
draw (0,0) rectangle (50,50);
draw (25,25) circle (25);
end{tikzpicture}
end{document}


But the black line not over red line perfectly,see below zoomed parts:



enter image description here



What's wrong with my draw on image code?










share|improve this question













Say I draw a red image with below code, generate input.pdf:



documentclass{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt,red]
draw (0,0) rectangle (50,50);
draw (25,25) circle (25);
end{tikzpicture}
end{document}


enter image description here



Then include input.pdf and draw the same thing on this image (draw with black):



documentclass{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
node[anchor=south west,inner sep=0,outer sep=0] at (0,0) {includegraphics{input.pdf}};
draw (0,0) rectangle (50,50);
draw (25,25) circle (25);
end{tikzpicture}
end{document}


But the black line not over red line perfectly,see below zoomed parts:



enter image description here



What's wrong with my draw on image code?







tikz-pgf






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 2 days ago









lucky1928

1,0301714




1,0301714








  • 3




    Well, seems like you did not take into account the line width. Try putting the image at (-pgflinewidth/2,-pgflinewidth/2) to take this into account.
    – marmot
    2 days ago












  • I think the problem is the draw. Replace it by fill[yellow] and fill[green] for exmple.
    – Sigur
    2 days ago






  • 1




    @marmot is right. put your node at (-0.5,-0.5) (half line width offset) and it lines up right. Your image is actually 51pt × 51pt but your code assumes it is 50pt × 50pt.
    – David Purton
    2 days ago
















  • 3




    Well, seems like you did not take into account the line width. Try putting the image at (-pgflinewidth/2,-pgflinewidth/2) to take this into account.
    – marmot
    2 days ago












  • I think the problem is the draw. Replace it by fill[yellow] and fill[green] for exmple.
    – Sigur
    2 days ago






  • 1




    @marmot is right. put your node at (-0.5,-0.5) (half line width offset) and it lines up right. Your image is actually 51pt × 51pt but your code assumes it is 50pt × 50pt.
    – David Purton
    2 days ago










3




3




Well, seems like you did not take into account the line width. Try putting the image at (-pgflinewidth/2,-pgflinewidth/2) to take this into account.
– marmot
2 days ago






Well, seems like you did not take into account the line width. Try putting the image at (-pgflinewidth/2,-pgflinewidth/2) to take this into account.
– marmot
2 days ago














I think the problem is the draw. Replace it by fill[yellow] and fill[green] for exmple.
– Sigur
2 days ago




I think the problem is the draw. Replace it by fill[yellow] and fill[green] for exmple.
– Sigur
2 days ago




1




1




@marmot is right. put your node at (-0.5,-0.5) (half line width offset) and it lines up right. Your image is actually 51pt × 51pt but your code assumes it is 50pt × 50pt.
– David Purton
2 days ago






@marmot is right. put your node at (-0.5,-0.5) (half line width offset) and it lines up right. Your image is actually 51pt × 51pt but your code assumes it is 50pt × 50pt.
– David Purton
2 days ago












2 Answers
2






active

oldest

votes

















up vote
10
down vote



accepted










OK, I just tried what I thought should work, and surprisingly it does. That is.



documentclass{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
node[anchor=south west,inner sep=0,outer sep=0] at (-pgflinewidth/2,-pgflinewidth/2) {includegraphics{input.pdf}};
draw (0,0) rectangle (50,50);
draw (25,25) circle (25);
end{tikzpicture}
end{document}


produces



enter image description here



as expected. Why? You put the node with anchor south west, and, as pointed out

by David Purton, your image is wider (and taller) by the line width (since it is wider and taller by half the line width in each direction). And why is this? You draw a path through the specified coordinates, and the line width gets added to this. I know that the explanation is very clumsy, it would be much easier in marmot language, but I am not sure how to type this, so as a compromise I add a figure. ;-)



enter image description here






share|improve this answer




























    up vote
    3
    down vote













    An alternative to @marmot's solution is to put the image at (25,25) to line up with your circle and anchor it at it's centre:



    documentclass{standalone}
    usepackage{tikz}
    begin{document}
    begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
    node[inner sep=0,outer sep=0] at (25,25) {includegraphics{input.pdf}};
    draw (0,0) rectangle (50,50);
    draw (25,25) circle (25);
    end{tikzpicture}
    end{document}





    share|improve this answer





















      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "85"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














       

      draft saved


      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f460864%2fdraw-on-image-not-fit-original-one-perfectly%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      10
      down vote



      accepted










      OK, I just tried what I thought should work, and surprisingly it does. That is.



      documentclass{standalone}
      usepackage{tikz}
      begin{document}
      begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
      node[anchor=south west,inner sep=0,outer sep=0] at (-pgflinewidth/2,-pgflinewidth/2) {includegraphics{input.pdf}};
      draw (0,0) rectangle (50,50);
      draw (25,25) circle (25);
      end{tikzpicture}
      end{document}


      produces



      enter image description here



      as expected. Why? You put the node with anchor south west, and, as pointed out

      by David Purton, your image is wider (and taller) by the line width (since it is wider and taller by half the line width in each direction). And why is this? You draw a path through the specified coordinates, and the line width gets added to this. I know that the explanation is very clumsy, it would be much easier in marmot language, but I am not sure how to type this, so as a compromise I add a figure. ;-)



      enter image description here






      share|improve this answer

























        up vote
        10
        down vote



        accepted










        OK, I just tried what I thought should work, and surprisingly it does. That is.



        documentclass{standalone}
        usepackage{tikz}
        begin{document}
        begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
        node[anchor=south west,inner sep=0,outer sep=0] at (-pgflinewidth/2,-pgflinewidth/2) {includegraphics{input.pdf}};
        draw (0,0) rectangle (50,50);
        draw (25,25) circle (25);
        end{tikzpicture}
        end{document}


        produces



        enter image description here



        as expected. Why? You put the node with anchor south west, and, as pointed out

        by David Purton, your image is wider (and taller) by the line width (since it is wider and taller by half the line width in each direction). And why is this? You draw a path through the specified coordinates, and the line width gets added to this. I know that the explanation is very clumsy, it would be much easier in marmot language, but I am not sure how to type this, so as a compromise I add a figure. ;-)



        enter image description here






        share|improve this answer























          up vote
          10
          down vote



          accepted







          up vote
          10
          down vote



          accepted






          OK, I just tried what I thought should work, and surprisingly it does. That is.



          documentclass{standalone}
          usepackage{tikz}
          begin{document}
          begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
          node[anchor=south west,inner sep=0,outer sep=0] at (-pgflinewidth/2,-pgflinewidth/2) {includegraphics{input.pdf}};
          draw (0,0) rectangle (50,50);
          draw (25,25) circle (25);
          end{tikzpicture}
          end{document}


          produces



          enter image description here



          as expected. Why? You put the node with anchor south west, and, as pointed out

          by David Purton, your image is wider (and taller) by the line width (since it is wider and taller by half the line width in each direction). And why is this? You draw a path through the specified coordinates, and the line width gets added to this. I know that the explanation is very clumsy, it would be much easier in marmot language, but I am not sure how to type this, so as a compromise I add a figure. ;-)



          enter image description here






          share|improve this answer












          OK, I just tried what I thought should work, and surprisingly it does. That is.



          documentclass{standalone}
          usepackage{tikz}
          begin{document}
          begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
          node[anchor=south west,inner sep=0,outer sep=0] at (-pgflinewidth/2,-pgflinewidth/2) {includegraphics{input.pdf}};
          draw (0,0) rectangle (50,50);
          draw (25,25) circle (25);
          end{tikzpicture}
          end{document}


          produces



          enter image description here



          as expected. Why? You put the node with anchor south west, and, as pointed out

          by David Purton, your image is wider (and taller) by the line width (since it is wider and taller by half the line width in each direction). And why is this? You draw a path through the specified coordinates, and the line width gets added to this. I know that the explanation is very clumsy, it would be much easier in marmot language, but I am not sure how to type this, so as a compromise I add a figure. ;-)



          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 days ago









          marmot

          76.9k487161




          76.9k487161






















              up vote
              3
              down vote













              An alternative to @marmot's solution is to put the image at (25,25) to line up with your circle and anchor it at it's centre:



              documentclass{standalone}
              usepackage{tikz}
              begin{document}
              begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
              node[inner sep=0,outer sep=0] at (25,25) {includegraphics{input.pdf}};
              draw (0,0) rectangle (50,50);
              draw (25,25) circle (25);
              end{tikzpicture}
              end{document}





              share|improve this answer

























                up vote
                3
                down vote













                An alternative to @marmot's solution is to put the image at (25,25) to line up with your circle and anchor it at it's centre:



                documentclass{standalone}
                usepackage{tikz}
                begin{document}
                begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
                node[inner sep=0,outer sep=0] at (25,25) {includegraphics{input.pdf}};
                draw (0,0) rectangle (50,50);
                draw (25,25) circle (25);
                end{tikzpicture}
                end{document}





                share|improve this answer























                  up vote
                  3
                  down vote










                  up vote
                  3
                  down vote









                  An alternative to @marmot's solution is to put the image at (25,25) to line up with your circle and anchor it at it's centre:



                  documentclass{standalone}
                  usepackage{tikz}
                  begin{document}
                  begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
                  node[inner sep=0,outer sep=0] at (25,25) {includegraphics{input.pdf}};
                  draw (0,0) rectangle (50,50);
                  draw (25,25) circle (25);
                  end{tikzpicture}
                  end{document}





                  share|improve this answer












                  An alternative to @marmot's solution is to put the image at (25,25) to line up with your circle and anchor it at it's centre:



                  documentclass{standalone}
                  usepackage{tikz}
                  begin{document}
                  begin{tikzpicture}[x=1pt,y=1pt,line width = 1pt]
                  node[inner sep=0,outer sep=0] at (25,25) {includegraphics{input.pdf}};
                  draw (0,0) rectangle (50,50);
                  draw (25,25) circle (25);
                  end{tikzpicture}
                  end{document}






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 2 days ago









                  David Purton

                  8,2741834




                  8,2741834






























                       

                      draft saved


                      draft discarded



















































                       


                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f460864%2fdraw-on-image-not-fit-original-one-perfectly%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      サソリ

                      広島県道265号伴広島線

                      Accessing regular linux commands in Huawei's Dopra Linux